7c643a2d9c
Read more here: https://github.com/w0rp/ale
10 lines
341 B
VimL
10 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',
|
|
\})
|