Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add jshint-config.json for guard
  • Loading branch information
pl committed Aug 5, 2013
1 parent 018c24b commit dd53047
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions jshint-config.json
@@ -0,0 +1,43 @@
{
"passfail" : false,
"maxerr" : 100,
"debug" : false,
"devel" : true,

"browser" : true,
"esnext": false,
"strict" : false,
"globalstrict" : false,

"asi" : false,
"laxbreak" : false,
"laxcomma": false,
"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" : false,

"newcap" : true,
"noempty" : true,
"nonew" : true,
"nomen" : false,
"onevar" : false,
"plusplus" : false,
"sub" : false,
"trailing" : true,
"white" : false
}

0 comments on commit dd53047

Please sign in to comment.