Skip to content

Commit

Permalink
add jshint config
Browse files Browse the repository at this point in the history
  • Loading branch information
chemdemo committed Aug 18, 2015
1 parent 213cfa8 commit 0fb356d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"predef": [
"module",
"require",
"exports",
"$",
"console"
],
"maxerr": 50,
"globalstrict": true,
"sub": true,
"supernew": false,
"freeze": true,
"indent": 4,
"white": true,
"curly": false,
"camelcase": true,
"latedef": false,
"eqnull": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"forin": false,
"onevar": false,
"maxdepth": 5,
"asi": true,
"boss": true,
"eqeqeq": false,
"debug": true,
"evil": false,
"lastsemic": false,
"laxcomma": true,
"loopfunc": true,
"multistr": true,
"notypeof": true,
"validthis": true,
"browser": true,
"jquery": false
}

0 comments on commit 0fb356d

Please sign in to comment.