1
0
Fork 0
mirror of synced 2024-10-23 03:58:59 -04:00
ultimate-vim/sources_non_forked/ale/ale_linters/astro/eslint.vim

12 lines
402 B
VimL
Raw Normal View History

2024-09-19 00:58:15 -04:00
" Author: Hyuksang Kwon <gwonhyuksang@gmail.com>
" Description: eslint for astro files
call ale#linter#Define('astro', {
\ 'name': 'eslint',
\ 'output_stream': 'both',
\ 'executable': function('ale#handlers#eslint#GetExecutable'),
\ 'cwd': function('ale#handlers#eslint#GetCwd'),
\ 'command': function('ale#handlers#eslint#GetCommand'),
\ 'callback': 'ale#handlers#eslint#HandleJSON',
\})