1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:00:03 +08:00
SpaceVim/bundle/ale/ale_linters/javascript/xo.vim

10 lines
315 B
VimL
Raw Normal View History

2021-02-10 10:31:34 +08:00
" Author: Daniel Lupu <lupu.daniel.f@gmail.com>
" Description: xo for JavaScript files
call ale#linter#Define('javascript', {
\ 'name': 'xo',
2023-06-09 12:10:45 +08:00
\ 'executable': function('ale#handlers#xo#GetExecutable'),
\ 'command': function('ale#handlers#xo#GetLintCommand'),
\ 'callback': 'ale#handlers#xo#HandleJSON',
2021-02-10 10:31:34 +08:00
\})