You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
312 B
VimL
10 lines
312 B
VimL
" Author: w0rp <devw0rp@gmail.com>
|
|
" Description: eslint for JavaScript files
|
|
|
|
call ale#linter#Define('javascript', {
|
|
\ 'name': 'eslint',
|
|
\ 'executable_callback': 'ale#handlers#eslint#GetExecutable',
|
|
\ 'command_callback': 'ale#handlers#eslint#GetCommand',
|
|
\ 'callback': 'ale#handlers#eslint#Handle',
|
|
\})
|