Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruanyl/vim-eslint
**deprecated**
https://github.com/ruanyl/vim-eslint
Last synced: 18 days ago
JSON representation
**deprecated**
- Host: GitHub
- URL: https://github.com/ruanyl/vim-eslint
- Owner: ruanyl
- License: mit
- Created: 2015-11-17T19:19:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-27T21:12:14.000Z (almost 9 years ago)
- Last Synced: 2024-11-05T14:55:48.614Z (2 months ago)
- Language: VimL
- Homepage:
- Size: 4.88 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
vim-eslint
===========This plugin is a simple wrap of [eslint_d.js](https://github.com/mantoni/eslint_d.js)
eslint_d run an eslint server on the background, it reduces the linting time.How to install
-----------------------
###vim-plugAdd this if you are using `vim-plug`
```vim
Plug 'ruanyl/vim-eslint', {'do': 'npm install'}
```or `cd path/to/vim-eslint` then run `npm install`
Then restart vim and run `:PlugInstall`.
To update the plugin to the latest version, you can run `:PlugUpdate`.How to use
----------Basically no configuration needed, this plugin will set `g:syntastic_javascript_eslint_exec` for you,
please do not overwrite this variableMake sure you have:
```
let g:syntastic_javascript_checkers = ['eslint']
```this plugin improve the linting speed significantly for me. Thanks to [eslint_d.js](https://github.com/mantoni/eslint_d.js)