Skip to content
Permalink
Browse files
updated eslint rules
  • Loading branch information
aa7401 committed Apr 8, 2019
1 parent a472bf2 commit 5aa2b613f56f821e130c79c97abea1791069ec31
Showing 1 changed file with 7 additions and 7 deletions.
@@ -15,7 +15,7 @@
"arrow-spacing": ["warn", {"before": true, "after": true}],
"brace-style": 2,
"camelcase": [2, {"properties": "never"}],
"complexity": ["error", 4],
"complexity": ["warn", 4],
"eol-last": "warn",
"eqeqeq": "error",
"func-call-spacing": ["error", "never"],
@@ -24,13 +24,13 @@
"indent": [1, "tab", {"SwitchCase": 1}],
"key-spacing": ["error", {"beforeColon": false, "afterColon": true}],
"linebreak-style": ["warn", "unix"],
"max-depth": ["error", 3],
"max-depth": ["warn", 3],
"max-len": ["warn", { "code": 120, "tabWidth": 4 }],
"max-lines": ["error", 100],
"max-lines-per-function": ["error", 15],
"max-nested-callbacks": ["error", 4],
"max-params": ["error", 5],
"max-statements": ["error", 10],
"max-lines": ["warn", 100],
"max-lines-per-function": ["warn", 15],
"max-nested-callbacks": ["warn", 4],
"max-params": ["warn", 5],
"max-statements": ["warn", 10],
"no-cond-assign": 2,
"no-dupe-args": "error",
"no-dupe-keys": "error",

0 comments on commit 5aa2b61

Please sign in to comment.