aboutsummaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
authorAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
committerAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
commit5310ac7d8eb1838a6297117bc7f9fca70291f46a (patch)
tree28f54b184cb85f04e6d6720dd03258f3728fedde /.jshintrc
initial commit
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
+ }
+}