diff options
author | moisseev <moiseev@mezonplus.ru> | 2019-11-22 22:18:31 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2019-11-22 22:20:52 +0300 |
commit | 5d32e84843f814c63a44746d02106959cfe86855 (patch) | |
tree | 83053d31137a3f0b0f51ccf40571caa1230bbc4a /.eslintrc.json | |
parent | c8b21925ed98980252e611ffb074c1417e541911 (diff) | |
download | rspamd-5d32e84843f814c63a44746d02106959cfe86855.tar.gz rspamd-5d32e84843f814c63a44746d02106959cfe86855.zip |
[Test] Ignore new ESLint warnings
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 1dace30fa..2dc3ebc51 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -21,9 +21,9 @@ "id-length": ["error", { "min": 1 }], "indent": ["error", 4, { "SwitchCase": 1 }], // "max-len": ["error", { "code": 120 }], - "key-spacing": ["error", { - "singleLine": { "afterColon": false } - }], + // "key-spacing": ["error", { + // "singleLine": { "afterColon": false } + // }], "line-comment-position": "off", "max-params": ["warn", 6], "max-statements": ["warn", 44], @@ -63,10 +63,12 @@ // Temporarily disabled rules "func-style": "off", "function-paren-newline": "off", + "key-spacing": "off", "max-len": "off", "max-lines": "off", "max-lines-per-function": "off", "no-invalid-this": "off", + "prefer-exponentiation-operator": "off", "sort-keys": "off", "sort-vars": "off" } |