Skip to content

Instantly share code, notes, and snippets.

@ladydascalie
Created November 11, 2015 00:43
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 ladydascalie/57a99f1c837603e9ba3a to your computer and use it in GitHub Desktop.
Save ladydascalie/57a99f1c837603e9ba3a to your computer and use it in GitHub Desktop.
Basic .jshintrc
{
"globals" : {
"describe" : false,
"it" : false,
"before" : false,
"beforeEach" : false,
"after" : false,
"afterEach" : false,
"window" : true,
"$" : true
},
"camelcase": true,
"curly": true,
"eqeqeq": true,
"freeze": true,
"indent": 2,
"latedef": true,
"laxcomma": true,
"node": true,
"trailing": true,
"strict": true,
"unused": "vars",
"undef": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment