diff options
author | moisseev <moiseev@mezonplus.ru> | 2023-11-20 14:25:09 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2023-11-20 14:25:09 +0300 |
commit | 4d10f4efe643a84da936f29d48cc28ad70803ab0 (patch) | |
tree | ca742f096e392de3eaab9fa6f340ad70dd5aab14 /.eslintrc.json | |
parent | b8cd1edebce5a60d3c67b31b15cc930d4d64dc57 (diff) | |
download | rspamd-4d10f4efe643a84da936f29d48cc28ad70803ab0.tar.gz rspamd-4d10f4efe643a84da936f29d48cc28ad70803ab0.zip |
[Minor] Disallow padding within blocks
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index cc08714b5..5e72d5e43 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -54,7 +54,7 @@ "@stylistic/newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }], "@stylistic/no-extra-parens": ["error", "functions"], "@stylistic/object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }], - "@stylistic/padded-blocks": "off", + "@stylistic/padded-blocks": ["error", "never"], "@stylistic/quote-props" : ["error", "consistent-as-needed"], "@stylistic/quotes": ["error", "double", { "avoidEscape": true }], "@stylistic/semi": ["error", "always"], |