aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-09-21 10:48:33 +0100
committerGitHub <noreply@github.com>2018-09-21 10:48:33 +0100
commit99123a5910bf905c4d1e6c5f8a2865a75c709f58 (patch)
tree35d793dcc4a3e84a626861d93dd48cb1a51d45f2 /.eslintrc.json
parentceb02b73ac502c16862c475528262997e035bb45 (diff)
parent47cad9a73265359c182191f9146c5fa22b6846f9 (diff)
downloadrspamd-99123a5910bf905c4d1e6c5f8a2865a75c709f58.tar.gz
rspamd-99123a5910bf905c4d1e6c5f8a2865a75c709f58.zip
Merge pull request #2512 from moisseev/eslint
[WebUI] Fix throughput data consolidation
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json6
1 files changed, 2 insertions, 4 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index fd33c6de2..ccd26cc74 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -28,6 +28,7 @@
"multiline-comment-style": "off",
"multiline-ternary": ["error", "always-multiline"],
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }],
+ "no-continue": "off",
"no-extra-parens": ["error", "functions"],
"no-implicit-globals": "off",
"no-magic-numbers": "off",
@@ -42,6 +43,7 @@
"padded-blocks": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
+ "prefer-spread": "off",
"prefer-template": "off",
"quote-props" : ["error", "consistent-as-needed"],
"require-jsdoc": "off",
@@ -54,13 +56,10 @@
// Temporarily disabled rules
- "array-callback-return": "off",
"array-element-newline": "off",
- "consistent-return": "off",
"consistent-this": "off",
"func-style": "off",
"function-paren-newline": "off",
- "guard-for-in": "off",
"line-comment-position": "off",
"max-len": "off",
"max-lines": "off",
@@ -69,7 +68,6 @@
"no-invalid-this": "off",
"no-underscore-dangle": "off",
"one-var-declaration-per-line": "off",
- "prefer-spread": "off",
"sort-keys": "off",
"sort-vars": "off"
}