diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-08 11:58:27 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-08 11:58:27 +0300 |
commit | 97f21fc116b5c2bb416d8bd212a2ee06ddceee68 (patch) | |
tree | e81fc467ff4dc4f4c59e6427b71fbcac537c152e /.eslintrc.json | |
parent | e514ce57b5dfba541564828ef6373c0912a9f7cd (diff) | |
download | rspamd-97f21fc116b5c2bb416d8bd212a2ee06ddceee68.tar.gz rspamd-97f21fc116b5c2bb416d8bd212a2ee06ddceee68.zip |
[WebUI] Fix variable assignment
I think `var full = shrt = "";` is `var full = (shrt = "");` effectively, so `full = true`.
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 71e2b443d..2c32e16a7 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -72,7 +72,6 @@ "no-implicit-coercion": "off", "no-inline-comments": "off", "no-loop-func": "off", - "no-multi-assign": "off", "no-negated-condition": "off", "no-param-reassign": "off", "no-redeclare": "off", |