summaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
authorAlexander Early <aearly@fluid.com>2015-05-19 17:37:48 -0700
committerAlexander Early <aearly@fluid.com>2015-05-19 17:39:55 -0700
commit074e091ec0a02be00627437c7a467984dcf03e91 (patch)
treefda154e4b2cba16aae801adfdc3839f3c56ffba6 /.jshintrc
parent89bacbfe52569aea67564ed460917153235f21d4 (diff)
downloadasync-074e091ec0a02be00627437c7a467984dcf03e91.tar.gz
fixed jshint issues, run linter on npm test
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc13
1 files changed, 9 insertions, 4 deletions
diff --git a/.jshintrc b/.jshintrc
index 3a2825a..172f491 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -5,15 +5,20 @@
"indent": 4,
"noarg": true,
"undef": true,
- "unused": true,
"trailing": true,
+ "evil": true,
+ "laxcomma": true,
// Relaxing options
+ "onevar": false,
"asi": false,
"eqnull": true,
- "evil": true,
"expr": false,
- "laxcomma": true,
"loopfunc": true,
- "sub": true
+ "sub": true,
+ "browser": true,
+ "node": true,
+ "globals": {
+ "define": true
+ }
}