Created
July 25, 2013 18:13
-
-
Save chrisbraddock/6082304 to your computer and use it in GitHub Desktop.
make jshint ignore lines/errors - thanks Brophy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Between those lines, the W116 error will not be checked | |
| // To get the error code, run on the command line: jshint --verbose <file> | |
| /*jshint -W116 */ | |
| if (arr1[i] != arr2[i]) { return false; } | |
| /*jshint +W116 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment