Skip to content

Commit

Permalink
add .jshintrc file
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardocereto committed Apr 18, 2012
1 parent 253abdb commit f4ad2c2
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .jshintrc
@@ -0,0 +1,51 @@
{
"passfail" : false,
"maxerr" : 100,
"browser" : true,
"node" : false,
"rhino" : false,
"couch" : false,
"wsh" : false,
"jquery" : false,
"prototypejs" : false,
"mootools" : false,
"dojo" : false,
"predef" : [
"_gaq"
],
"debug" : false,
"devel" : false,
"es5" : false,
"strict" : false,
"globalstrict" : false,
"asi" : false,
"laxbreak" : true,
"bitwise" : true,
"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" : false,
"shadow" : false,
"supernew" : false,
"undef" : true,
"newcap" : true,
"noempty" : true,
"nonew" : true,
"nomen" : false,
"onevar" : false,
"plusplus" : false,
"sub" : true,
"trailing" : true,
"white" : true,
"indent" : 4
}

0 comments on commit f4ad2c2

Please sign in to comment.