Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion 18 docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,24 @@ During development you may want to reset the whole plugin. It is available via c
In order to use this command open command panel in Atom (`Ctrl` + `Shift` + `P`) and find
command titled as `Deepcode: Reset Plugin`.

##Testing
## Testing

In order to run tests open plugin folder in `Atom` and use menu command
`View` -> `Developer` -> `Run Package Specs`
or just press `Ctrl` + `Shift` + `Y`.

## Publishing

In order to publish package to the [atom.io package registry](https://atom.io/packages)
you may use the `apm publish` command:
```shell script
$ cd atom-plugin
$ apm publish <version-type>

# where <version-type> is one of:
# - patch
# - minor
# - major
```

To read more about publishing visit [official docs page](https://flight-manual.atom.io/hacking-atom/sections/publishing/).
2 changes: 1 addition & 1 deletion 2 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "deepcode",
"main": "./lib/deepcode",
"version": "0.0.1",
"version": "0.0.0",
"description": "Detect bugs and quality issues in JavaScript, TypeScript, React, Vue and more...",
"keywords": [
"code analysis",
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.