I installed javascript lint yesterday and I liked the capability to be integrated with IDEs. I've successfully integrated it with vim. But I couldn't change the set of rules that jsl should look for.
I just wanted to disable warnings for missing the radix parameter for parseInt function and I changed the line
+parseint_missing_radix
to
-parseint_missing_radix
. The change is reflected if I use jsl in command line, but not in vim;I'm still getting the warnings!
I'm using parseInt at many instances and getting so many warnings is annoying. How to suppress it?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I installed javascript lint yesterday and I liked the capability to be integrated with IDEs. I've successfully integrated it with vim. But I couldn't change the set of rules that jsl should look for.
I just wanted to disable warnings for missing the radix parameter for parseInt function and I changed the line
to
. The change is reflected if I use jsl in command line, but not in vim;I'm still getting the warnings!
I'm using parseInt at many instances and getting so many warnings is annoying. How to suppress it?