Hi guys!
I have some JS condition where I use !=0, that means I am looking for a number or string and not an empty or zero value (jsfiddle: https://jsfiddle.net/hjL4eaht/1/)
So I got a warning because JSHint suggest me to use == to avoid empties, what is absolutely understandable, but I don’t need it, so I am disabling it making eqeqeq option to false:
Is not working, I continue getting these warnings, how can I disable them?
Thank you!