We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Maintainer: Martin Grenfell martin.grenfell@gmail.com
JSLint is a code quality checker for JavaScript. See the program's page for details.
By default the checker calls jslint with these options:
jslint
--white --nomen --regexp --plusplus --bitwise --newcap --sloppy --vars
This can be changed by setting g:syntastic_javascript_jslint_args in your vimrc to your own list of options, for example:
g:syntastic_javascript_jslint_args
vimrc
let g:syntastic_javascript_jslint_args = "--white --nomen --regexp --browser --devel --windows --sloppy --vars"
Setting this variable to the empty string "" is allowed, and instructs syntastic to call jslint with no options.
""