Skip to content

Instantly share code, notes, and snippets.

@simonmcmanus
Created February 19, 2015 10:39
Show Gist options
  • Save simonmcmanus/d6a8654eeb7ef34e4e02 to your computer and use it in GitHub Desktop.
Save simonmcmanus/d6a8654eeb7ef34e4e02 to your computer and use it in GitHub Desktop.
.jshintrc
{
"node": true,
"bitwise" : true,
"camelcase" : true,
"curly" : true,
"eqeqeq" : true,
"forin" : true,
"freeze" : true,
"immed" : true,
"indent" : 4,
"latedef" : "nofunc",
"newcap" : true,
"noarg" : true,
"noempty" : true,
"nonew" : true,
"quotmark" : "single",
"undef" : true,
"unused" : true,
"strict" : true,
"trailing" : true,
"maxdepth" : 3,
"maxstatements" : 10,
"maxcomplexity" : 5,
"expr" : true,
"globals": {
"describe": true,
"it": true,
"should": true,
"window": true,
"document": true,
"$": true,
"beforeEach": true,
"before": true,
"afterEach": true,
"after": true,
"tesco": false,
"alert": true,
"_": true,
"Backbone": true,
"page": true,
"history": true
},
"boss" : true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment