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.

12 lines
340 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. "autocmd bufwritepost *.js silent !standard --fix %
  6. set autoread
  7. set wildignore+=node_modules
  8. set tabstop=2
  9. set shiftwidth=2