Skip to content

Instantly share code, notes, and snippets.

@kt3k
Created November 25, 2015 10:45
Show Gist options
  • Save kt3k/06460ddeec9b2671f5b0 to your computer and use it in GitHub Desktop.
Save kt3k/06460ddeec9b2671f5b0 to your computer and use it in GitHub Desktop.

.jshintrc

{
  "unused": true,
  "-W117": true
}

test.js

a();
function a() {
  console.log(1);
}
$ jshint test.js
test.js: line 2, col 10, 'a' is defined but never used.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment