I use the JSLint
plugin for ST (in addition to the SublimeLinter-jshint
plugin).
I disagree with the theory that the use of ++
or --
is evil, tricky etc. and use them quite freely. As such I don't appreciate the warning that I should use += 1
instead of ++
throughout my code.
I have tried adding the line /*jslint plusplus: true */
at the beginning of my code as per Unexpected '++' in jslint
but this did not help.
How can I make a global setting for the JSLint ST plugin to tolerate the usage of ++
and --
?