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.
16 lines
359 B
VimL
16 lines
359 B
VimL
" Vue configuration for Syntastic
|
|
|
|
if exists('g:loaded_syntastic_vue_eslint_checker')
|
|
finish
|
|
endif
|
|
|
|
let g:loaded_syntastic_vue_eslint_checker = 1
|
|
|
|
runtime! syntax_checkers/javascript/eslint.vim
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
\ 'filetype': 'vue',
|
|
\ 'name': 'eslint',
|
|
\ 'redirect': 'javascript/eslint'
|
|
\ })
|