diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -68,7 +68,7 @@ - [ ] "max-lines-per-function" - [ ] "max-nested-callbacks" - [ ] "max-params" -- [ ] "max-statements" +- [X] "max-statements" - [ ] "max-statements-per-line" - [X] "multiline-comment-style" - [ ] "multiline-ternary" diff --git a/src/rules/default.json b/src/rules/default.json index b8c2521..8fdf66e 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -99,6 +99,9 @@ "lines-around-directive": [ "off" ], + "max-statements": [ + "off" + ], "multiline-comment-style": [ "error", "starred-block" |