summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/default.json3
2 files changed, 4 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 4c21c1d..301de1f 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -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"
],