summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/eslint.vim
blob: 31fb413f03373337545b951122f2c021a58a43a4 (plain)
1
2
3
4
5
6
7
8
9
10
" Author: w0rp <devw0rp@gmail.com>
" Description: eslint for JavaScript files

call ale#linter#Define('javascript', {
\   'name': 'eslint',
\   'output_stream': 'both',
\   'executable': function('ale#handlers#eslint#GetExecutable'),
\   'command': function('ale#handlers#eslint#GetCommand'),
\   'callback': 'ale#handlers#eslint#HandleJSON',
\})