Skip to content
Permalink
Browse files
Updated linter rules
  • Loading branch information
hortonr6 committed Nov 20, 2019
1 parent d3e5a18 commit 1e29dda72ccfa7e694ebcc66def45cc277851a62
Showing 1 changed file with 2 additions and 2 deletions.
@@ -24,8 +24,8 @@
"indent": [1, "tab", {"SwitchCase": 1}],
"key-spacing": ["error", {"beforeColon": false, "afterColon": true}],
"max-depth": ["error", 3],
"max-len": ["warn", { "code": 120, "tabWidth": 4 }],
"max-lines": ["warn", 150],
"max-len": ["warn", { "code": 120, "tabWidth": 4, "ignoreComments": true }],
"max-lines": ["warn", { "max": 150, "skipComments": true, "skipBlankLines": true }],
"max-lines-per-function": ["error", 25],
"max-nested-callbacks": ["error", 4],
"max-params": ["error", 5],

0 comments on commit 1e29dda

Please sign in to comment.