Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add eslint.js for WebStorm compat #24

Merged
merged 1 commit into from
Dec 8, 2015
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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ let g:syntastic_javascript_eslint_exec = 'eslint_d'

Atom users will not gain any performance from this module as it already avoids starting a new node instance and uses the API directly (see [this AtomLinter issue](https://github.com/AtomLinter/linter-eslint/issues/215)).

- __Webstorm__: Configure your IDE to point to the eslint_d package instead of ESLint.

In the ESLint configuration dialog, under 'ESLint package', select your eslint_d package.

If you get the error "../bin/eslint.js" file not found, you are using an outdated version of eslint_d.


If you're using `eslint_d` in any other editor, please tell me!

## Moar speed
Expand Down
4 changes: 4 additions & 0 deletions bin/eslint.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env node
'use strict';

require('./eslint_d');