Skip to content

Instantly share code, notes, and snippets.

@lrgalego
Last active August 17, 2016 18:07
Show Gist options
  • Save lrgalego/7a5ed9c590ae365716bcbbefbd146612 to your computer and use it in GitHub Desktop.
Save lrgalego/7a5ed9c590ae365716bcbbefbd146612 to your computer and use it in GitHub Desktop.
vim syntastic config for eslint
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_loc_list_height = 5
let g:syntastic_auto_loc_list = 0
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 1
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_javascript_eslint_exec = './node_modules/.bin/eslint'
let g:syntastic_error_symbol = '❌'
let g:syntastic_style_error_symbol = '🚫'
let g:syntastic_warning_symbol = '❗️'
let g:syntastic_style_warning_symbol = '💩'
highlight link SyntasticErrorSign SignColumn
highlight link SyntasticWarningSign SignColumn
highlight link SyntasticStyleErrorSign SignColumn
highlight link SyntasticStyleWarningSign SignColumn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment