How can I configure JSHint to ignore this error: Use \'!==\' to compare with \'\'. ?
Use \'!==\' to compare with \'\'.
I want that this code pass:
/*jshint undef: false */ if
Just use:
if (a) { }
You don't ever need to use == true in a if statement.
== true
if