Skip to content

Instantly share code, notes, and snippets.

@japboy
Last active August 29, 2015 14:01
Show Gist options
  • Save japboy/eb3d482d25c7378d7861 to your computer and use it in GitHub Desktop.
Save japboy/eb3d482d25c7378d7861 to your computer and use it in GitHub Desktop.
JSHint default configuration
{
"bitwise": false,
"camelcase": false,
"curly": false,
"eqeqeq": true,
"es3": false,
"es5": false,
"esnext": true,
"forin": false,
"freeze": false,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": false,
"noarg": true,
"noempty": false,
"nonbsp": true,
"nonew": true,
"plusplus": false,
"quotmark": true,
"undef": true,
"predef": [
"console",
"document",
"global",
"module",
"navigator",
"process",
"require",
"window"
],
"unused": false,
"strict": true,
"trailing": true,
"maxparams": 4,
"maxdepth": 3,
"maxstatements": false,
"maxcomplexity": 10,
"maxlen": 100,
"globalstrict": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment