feat(eslint): Rule "max-len"
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
03127f73f3
commit
2588edeee2
@ -63,7 +63,7 @@
|
||||
- [X] "lines-between-class-members"
|
||||
- [ ] "max-classes-per-file"
|
||||
- [ ] "max-depth"
|
||||
- [ ] "max-len"
|
||||
- [X] "max-len"
|
||||
- [X] "max-lines"
|
||||
- [ ] "max-lines-per-function"
|
||||
- [ ] "max-nested-callbacks"
|
||||
|
@ -117,6 +117,20 @@
|
||||
"exceptAfterSingleLine": false
|
||||
}
|
||||
],
|
||||
"max-len": [
|
||||
"warn",
|
||||
{
|
||||
"code": 180,
|
||||
"comments": 72,
|
||||
"ignoreComments": false,
|
||||
"ignoreRegExpLiterals": false,
|
||||
"ignoreStrings": true,
|
||||
"ignoreTemplateLiterals": true,
|
||||
"ignoreTrailingComments": false,
|
||||
"ignoreUrls": true,
|
||||
"tabWidth": 4
|
||||
}
|
||||
],
|
||||
"max-lines": [
|
||||
"off"
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user