All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
499 B

  1. "let g:syntastic_javascript_checkers = ['standard']
  2. let g:syntastic_javascript_checkers = ['eslint']
  3. let g:syntastic_javascript_eslint_exe = '$(npm bin)/eslint'
  4. let g:syntastic_javascript_eslint_args = ['--fix']
  5. " And also for vue
  6. let g:syntastic_vue_checkers = ['eslint']
  7. let g:syntastic_vue_eslint_exe = '$(npm bin)/eslint'
  8. let g:syntastic_vue_eslint_args = ['--fix']
  9. "autocmd bufwritepost *.js silent !standard --fix %
  10. set autoread
  11. set wildignore+=node_modules
  12. set tabstop=2
  13. set shiftwidth=2