feat(eslint): Rule "max-lines"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 23:14:21 +04:00
parent 21abdcaf63
commit 03127f73f3
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -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"

View File

@ -117,6 +117,9 @@
"exceptAfterSingleLine": false
}
],
"max-lines": [
"off"
],
"max-statements": [
"off"
],