summaryrefslogtreecommitdiff
path: root/ale_linters/typescript/eslint.vim
blob: eaeac3073f256f9381175b59fc4c84df0eeefaf2 (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('typescript', {
\   'name': 'eslint',
\   'executable': function('ale#handlers#eslint#GetExecutable'),
\   'cwd': function('ale#handlers#eslint#GetCwd'),
\   'command': function('ale#handlers#eslint#GetCommand'),
\   'callback': 'ale#handlers#eslint#HandleJSON',
\})