Update vimrc for ALE instead of syntastic

Buddy Sandidge 7 years ago
parent 489815aaa5
commit f2791f437d

16
vimrc

@ -60,15 +60,13 @@ map <F12> ggVGg? " apply rot13 for people snooping over shoulder, good fun
let NERDTreeDirArrows=1 let NERDTreeDirArrows=1
let NERDTreeIgnore = ['\.pyc$'] let NERDTreeIgnore = ['\.pyc$']
" Prep some variables for use with syntastic syntax checker let g:ale_linters = {
let g:syntastic_phpcs_disable=1 \ 'javascript': ['eslint']
let g:syntastic_auto_loc_list=1 \}
let g:syntastic_stl_format = '[%E{Err: %fe #%e}%B{, }%W{Warn: %fw #%w}]'
" let g:syntastic_json_checker = "jsonlint" "let g:ale_fixers = {
let g:syntastic_scss_checkers = [] "\ 'javascript': ['prettier'],
let g:syntastic_css_checkers = [] "\}
let g:syntastic_html_checkers=[]
let g:syntastic_javascript_checkers = ['jshint', 'eslint', 'jscs']
" Close all open buffers on entering a window if the only " Close all open buffers on entering a window if the only
" buffer that's left is the NERDTree buffer " buffer that's left is the NERDTree buffer

Loading…
Cancel
Save