diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -64,7 +64,7 @@ - [ ] "max-classes-per-file" - [ ] "max-depth" - [ ] "max-len" -- [ ] "max-lines" +- [X] "max-lines" - [ ] "max-lines-per-function" - [ ] "max-nested-callbacks" - [ ] "max-params" diff --git a/src/rules/default.json b/src/rules/default.json index 6e6a96a..016fd93 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -117,6 +117,9 @@ "exceptAfterSingleLine": false } ], + "max-lines": [ + "off" + ], "max-statements": [ "off" ], |