Skip to content

Instantly share code, notes, and snippets.

@sanderhouttekier
Created March 8, 2013 14:10
Show Gist options
  • Save sanderhouttekier/5116666 to your computer and use it in GitHub Desktop.
Save sanderhouttekier/5116666 to your computer and use it in GitHub Desktop.
js hint config #snippet #jshintrc
{
"passfail" : false,
"maxerr" : 10000,
"browser" : true,
"node" : false,
"rhino" : false,
"couch" : false,
"wsh" : false,
"jquery" : true,
"prototypejs" : false,
"mootools" : false,
"dojo" : false,
"predef" : [
"App"
],
"debug" : false,
"devel" : true,
"es5" : true,
"strict" : false,
"globalstrict" : false,
"asi" : false,
"laxbreak" : true,
"bitwise" : false,
"boss" : false,
"curly" : true,
"eqeqeq" : true,
"eqnull" : false,
"evil" : false,
"expr" : false,
"forin" : false,
"immed" : true,
"latedef" : true,
"loopfunc" : false,
"noarg" : true,
"regexp" : true,
"regexdash" : false,
"scripturl" : true,
"shadow" : false,
"supernew" : false,
"undef" : true,
"newcap" : true,
"noempty" : true,
"nonew" : true,
"nomen" : false,
"onevar" : false,
"plusplus" : true,
"sub" : false,
"trailing" : true,
"white" : true,
"indent" : 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment