Skip to content

Instantly share code, notes, and snippets.

@benmccormick
Created October 13, 2014 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benmccormick/8e61bff67a5eceba5d92 to your computer and use it in GitHub Desktop.
Save benmccormick/8e61bff67a5eceba5d92 to your computer and use it in GitHub Desktop.
My jsHint Configuration
{
"bitwise":true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef":true,
"newcap": true,
"nonew":true,
"quotmark":"single",
"undef":true,
"unused":true,
"trailing":true,
"maxlen":80,
"browser":true,
"jquery":true,
"globals": {
"console":false,
"confirm":true,
"$":false,
"Handlebars":false,
"define": false,
"require":false,
"Backbone":false,
"Backgrid":false,
"_":false,
"d3":false,
"expect":false,
"it":false,
"jasmine":false,
"describe":false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment