Skip to content

Instantly share code, notes, and snippets.

@chrisbraddock
Created July 25, 2013 18:13
Show Gist options
  • Select an option

  • Save chrisbraddock/6082304 to your computer and use it in GitHub Desktop.

Select an option

Save chrisbraddock/6082304 to your computer and use it in GitHub Desktop.
make jshint ignore lines/errors - thanks Brophy
// 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