Skip to content

Instantly share code, notes, and snippets.

@twalker
Last active December 9, 2015 17:18
Show Gist options
  • Save twalker/4302547 to your computer and use it in GitHub Desktop.
Save twalker/4302547 to your computer and use it in GitHub Desktop.
jshint settings
{
"maxcomplexity": 5,
"asi": true,
"strict": false,
"maxstatements": 15,
"maxlen": 120,
"maxdepth": 4,
"maxparams": 4,
"indent": 2,
"smarttabs": true,
"laxcomma": false,
"immed" : true,
"newcap" : true,
"noarg" : true,
"sub" : true,
"undef" : true,
"boss" : true,
"eqnull" : true,
"camelcase": true,
"browser" : true,
"node": true,
"devel": true,
"mocha": true,
"esnext": true,
"globals": {
"System": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment