Skip to content

Instantly share code, notes, and snippets.

@maliMirkec
Created February 10, 2017 11:10
Show Gist options
  • Save maliMirkec/847d90bf7ed262cbf236ca0f03fa7c4c to your computer and use it in GitHub Desktop.
Save maliMirkec/847d90bf7ed262cbf236ca0f03fa7c4c to your computer and use it in GitHub Desktop.
Default JSHint config
{
"maxerr" : 50,
"bitwise" : false,
"camelcase" : true,
"curly" : true,
"eqeqeq" : true,
"forin" : true,
"freeze" : true,
"immed" : false,
"latedef" : false,
"newcap" : false,
"noarg" : true,
"noempty" : true,
"nonbsp" : true,
"nonew" : false,
"plusplus" : false,
"quotmark" : "single",
"undef" : true,
"unused" : true,
"strict" : true,
"maxparams" : false,
"maxdepth" : false,
"maxstatements" : false,
"maxcomplexity" : false,
"maxlen" : false,
"varstmt" : true,
"asi" : false,
"boss" : false,
"debug" : true,
"eqnull" : false,
"esversion" : 6,
"moz" : false,
"evil" : false,
"expr" : false,
"funcscope" : false,
"globalstrict" : true,
"iterator" : false,
"lastsemic" : false,
"laxbreak" : false,
"laxcomma" : false,
"loopfunc" : false,
"multistr" : true,
"noyield" : false,
"notypeof" : false,
"proto" : false,
"scripturl" : false,
"shadow" : false,
"sub" : false,
"supernew" : false,
"validthis" : false,
"browser" : true,
"browserify" : false,
"couch" : false,
"devel" : true,
"dojo" : false,
"jasmine" : false,
"jquery" : false,
"mocha" : false,
"mootools" : false,
"node" : true,
"nonstandard" : false,
"phantom" : false,
"prototypejs" : false,
"qunit" : false,
"rhino" : false,
"shelljs" : false,
"typed" : false,
"worker" : false,
"wsh" : false,
"yui" : false,
"globals" : {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment