Disable xmllint checkers.

This commit is contained in:
David Tomaschik
2020-04-01 12:48:59 -07:00
parent 72b82ff2e3
commit d67b18f2ea

View File

@@ -130,6 +130,9 @@ let g:syntastic_enable_signs = 1
let g:syntastic_auto_loc_list = 2
let g:syntastic_go_checkers = ['govet', 'errcheck', 'go']
let g:syntastic_python_checkers=['flake8']
" Because XXE
let g:syntastic_xml_checkers=['']
let g:syntastic_xslt_checkers=['']
" Have F5 run the tests and display errors
nnoremap <silent> <F5> :SyntasticCheck<CR> :Errors<CR>