summaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
authorlion-man <amanattou44@gmail.com>2014-05-31 21:31:47 +0900
committerlion-man <amanattou44@gmail.com>2014-05-31 21:31:47 +0900
commitac463aab272417fbd5bec89f1a713f17ef1be47e (patch)
tree6b86112f84cb92961834aa8c6c89d932a90a0895 /.jshintrc
parent66ca10e52795707ca436154bddc38c560864e91c (diff)
downloadasync-ac463aab272417fbd5bec89f1a713f17ef1be47e.tar.gz
Add jshintrc
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc19
1 files changed, 19 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..3a2825a
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,19 @@
+{
+ // Enforcing options
+ "eqeqeq": false,
+ "forin": true,
+ "indent": 4,
+ "noarg": true,
+ "undef": true,
+ "unused": true,
+ "trailing": true,
+
+ // Relaxing options
+ "asi": false,
+ "eqnull": true,
+ "evil": true,
+ "expr": false,
+ "laxcomma": true,
+ "loopfunc": true,
+ "sub": true
+}