diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-06 09:57:07 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-06 09:57:07 +0300 |
commit | d3c4028f4da8e84ffb54198d42637778a3becb69 (patch) | |
tree | 866ea5ad7f358144bd3d98c61c58bbb105dd7506 /.eslintrc.json | |
parent | 719327eb8b16c52a4474e544363a9b1230ff9e11 (diff) | |
download | rspamd-d3c4028f4da8e84ffb54198d42637778a3becb69.tar.gz rspamd-d3c4028f4da8e84ffb54198d42637778a3becb69.zip |
[Minor] JS: Remove redundant quotes
around object literal property names
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 1805d192c..4231abb4b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -34,7 +34,7 @@ "prefer-arrow-callback": "off", "prefer-destructuring": "off", "prefer-template": "off", - // "quote-props" : ["error", "consistent-as-needed"], + "quote-props" : ["error", "consistent-as-needed"], "require-jsdoc": "off", "space-before-function-paren": ["error", { "anonymous": "always", @@ -84,7 +84,6 @@ "no-use-before-define": "off", "one-var-declaration-per-line": "off", "prefer-spread": "off", - "quote-props": "off", "sort-keys": "off", "sort-vars": "off", "strict": "off" |