aboutsummaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc25
1 files changed, 25 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..0f847e2
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,25 @@
+{
+ "bitwise": true,
+ "immed": true,
+ "newcap": true,
+ "noarg": true,
+ "noempty": true,
+ "nonew": true,
+ "trailing": true,
+ "maxlen": 200,
+ "boss": true,
+ "eqnull": true,
+ "expr": true,
+ "globalstrict": true,
+ "laxbreak": true,
+ "loopfunc": true,
+ "sub": true,
+ "undef": true,
+ "indent": 2,
+ "unused": true,
+
+ "node": true,
+ "globals": {
+ "System": true
+ }
+}