11 lines
341 B
VimL
11 lines
341 B
VimL
|
" Author: w0rp <devw0rp@gmail.com>
|
||
|
" Description: eslint for JavaScript files
|
||
|
|
||
|
call ale#linter#Define('javascript', {
|
||
|
\ 'name': 'eslint',
|
||
|
\ 'output_stream': 'both',
|
||
|
\ 'executable_callback': 'ale#handlers#eslint#GetExecutable',
|
||
|
\ 'command_callback': 'ale#handlers#eslint#GetCommand',
|
||
|
\ 'callback': 'ale#handlers#eslint#Handle',
|
||
|
\})
|