I just added jsonlint
for Syntastic, and it's not catching any syntax errors. flake8
is working fine for Python, and has been for a while, but no jsonlint
. Below you'll see the relevant portion of my .vimrc, where I believe to have everything I need to get this next checker working.
.vimrc
let g:syntastic_python_checkers=['flake8']
let g:syntastic_python_flake8_args = '--ignore="E501"' " ignore long lines
let g:syntastic_json_checkers=['jsonlint']
" Better :sign interface symbols
let g:syntastic_error_symbol = '✗'
let g:syntastic_warning_symbol = '!'
which jsonlint
/usr/local/bin/jsonlint