Skip to content

Instantly share code, notes, and snippets.

@ghthor
Created August 19, 2012 15:28
Show Gist options
  • Save ghthor/3395472 to your computer and use it in GitHub Desktop.
Save ghthor/3395472 to your computer and use it in GitHub Desktop.
jshintrc
{
"passfail" : false,
"maxerr" : 100,
"browser" : true,
"node" : false,
"rhino" : false,
"couch" : false,
"wsh" : false,
"jquery" : false,
"prototypejs" : false,
"mootools" : false,
"dojo" : false,
"predef" : [
"requirejs",
"require",
"define",
"jasmine",
"describe",
"it",
"expect",
"CAAT",
"key",
"google"
],
"debug" : false,
"devel" : true,
"es5" : false,
"strict" : false,
"globalstrict" : false,
"bitwise" : true,
"camelcase" : true,
"curly" : true,
"eqeqeq" : true,
"forin" : false,
"immed" : true,
"undef" : true,
"latedef" : true,
"unused" : true,
"boss" : false,
"eqnull" : false,
"evil" : false,
"expr" : false,
"loopfunc" : false,
"noarg" : true,
"regexp" : true,
"regexdash" : false,
"scripturl" : true,
"shadow" : false,
"supernew" : false,
"laxbreak" : false,
"laxcomma" : false,
"asi" : false,
// Persone styling prefrences.
"quotmark" : "double",
"indent" : 4,
"newcap" : true,
"noempty" : true,
"nonew" : true,
"nomen" : false,
"onevar" : false,
"plusplus" : false,
"sub" : false,
"trailing" : true,
"white" : false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment