diff options
author | moisseev <moiseev@mezonplus.ru> | 2023-11-19 18:31:57 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2023-11-19 18:31:57 +0300 |
commit | a592c2a341db27cfac0a894b49eb922e56138004 (patch) | |
tree | b806ee53e1d96917f5068ee8a0432f51730a3652 /.eslintrc.json | |
parent | ab1b0baf1f63b57ae1e04093235d1e7c5603bd57 (diff) | |
download | rspamd-a592c2a341db27cfac0a894b49eb922e56138004.tar.gz rspamd-a592c2a341db27cfac0a894b49eb922e56138004.zip |
[Test] Enforce maximum line length
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 97ff7c8f6..a8cc237e0 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -51,7 +51,7 @@ "@stylistic/dot-location": ["error", "property"], "@stylistic/function-call-argument-newline": "off", "@stylistic/indent": ["error", 4, { "SwitchCase": 1 }], - "@stylistic/max-len": ["error", { "code": 120 }], + "@stylistic/max-len": ["error", { "code": 128 }], "@stylistic/max-statements-per-line": ["error", { "max": 2 }], "@stylistic/multiline-ternary": ["error", "always-multiline"], "@stylistic/newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }], @@ -78,7 +78,6 @@ "@stylistic/function-paren-newline": "off", "@stylistic/key-spacing": "off", - "@stylistic/max-len": "off", "@stylistic/one-var-declaration-per-line": "off" } } |