Skip to content
This repository has been archived by the owner on Nov 24, 2019. It is now read-only.

Commit

Permalink
new .jshintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Walther committed Mar 1, 2015
1 parent 65c89cd commit 939d3c5
Showing 1 changed file with 68 additions and 15 deletions.
83 changes: 68 additions & 15 deletions .jshintrc
@@ -1,23 +1,76 @@
{
"node": true,
"esnext": true,
"asi": false,
"bitwise": true,
"camelcase": true,
"boss": false,
"browser": true,
"camelcase": false,
"couch": false,
"curly": true,
"debug": false,
"devel": false,
"dojo": false,
"eqeqeq": true,
"immed": true,
"indent": 2,
"eqnull": true,
"es5": false,
"esnext": false,
"evil": false,
"expr": false,
"forin": false,
"funcscope": false,
"globalstrict": false,
"immed": false,
"iterator": false,
"jquery": false,
"lastsemic": false,
"latedef": true,
"newcap": true,
"laxbreak": false,
"laxcomma": false,
"loopfunc": false,
"mootools": false,
"multistr": false,
"newcap": false,
"noarg": true,
"quotmark": "single",
"regexp": true,
"node": false,
"noempty": true,
"nonew": true,
"nomen": false,
"nonstandard": false,
"onecase": false,
"onevar": false,
"passfail": false,
"plusplus": false,
"proto": false,
"prototypejs": false,
"regexp": false,
"regexdash": false,
"rhino": false,
"scripturl": false,
"shadow": false,
"smarttabs": false,
"sub": false,
"supernew": false,
"strict": false,
"trailing": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": true,
"browser": true,
"node": true
}
"validthis": false,
"white": false,
"withstmt": false,
"worker": false,
"wsh": false,
"yui": false,
"globals": {
"require": true,
"define": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"chai": true,
"sinon": true,
"describe": true,
"context": true,
"it": true,
"flush": true
}
}

0 comments on commit 939d3c5

Please sign in to comment.