diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 22:24:25 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 22:24:25 +0300 |
commit | 2588edeee2d02abdabe1e7ffe45a633e3c9a62d6 (patch) | |
tree | 177a4095cbcbf613974a0b21bfca695745047b65 | |
parent | 03127f73f3bfde9c541f0a221231c372949781f4 (diff) | |
download | eslint-config-2588edeee2d02abdabe1e7ffe45a633e3c9a62d6.tar.xz eslint-config-2588edeee2d02abdabe1e7ffe45a633e3c9a62d6.zip |
feat(eslint): Rule "max-len"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 14 |
2 files changed, 15 insertions, 1 deletions
@@ -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" diff --git a/src/rules/default.json b/src/rules/default.json index 016fd93..f0e2ab2 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -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" ], |