Browse Source

Enable 100 char limit, tab counts as 2 chars

http://eslint.org/docs/rules/max-len.html
Artur Paikin 9 years ago
parent
commit
cf8bdae09c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .eslintrc

+ 1 - 1
.eslintrc

@@ -146,7 +146,7 @@
     "key-spacing": [0, { "beforeColon": false, "afterColon": true }],
     "lines-around-comment": 0,
     "max-depth": [0, 4],
-    "max-len": [0, 80, 4],
+    "max-len": [2, 100, 2],
     "max-nested-callbacks": [0, 2],
     "max-params": [0, 3],
     "max-statements": [0, 10],