mirror of
https://github.com/posva/vim-vue.git
synced 2025-12-08 10:24:45 +08:00
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'
|
|
\ })
|