diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-12 12:49:21 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-12 12:49:21 +0300 |
commit | ebfc92f3490d961f81d0d54b98f2f89e728a7a22 (patch) | |
tree | cddc84a2ee0a9095d4ad51ea9d0cc755d6690647 /.eslintrc.json | |
parent | 7f169bd819f5b35cd3237308b3e4441cc02934ff (diff) | |
download | rspamd-ebfc92f3490d961f81d0d54b98f2f89e728a7a22.tar.gz rspamd-ebfc92f3490d961f81d0d54b98f2f89e728a7a22.zip |
[WebUI] Enable strict mode,
rename `interface` oblect as it is a reserved keyword,
declare $span and $tbody variables
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 19f85ea9c..9454f85d8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -71,6 +71,7 @@ "no-empty": "off", "no-empty-function": "off", "no-inline-comments": "off", + "no-invalid-this": "off", "no-loop-func": "off", "no-negated-condition": "off", "no-param-reassign": "off", @@ -80,7 +81,6 @@ "one-var-declaration-per-line": "off", "prefer-spread": "off", "sort-keys": "off", - "sort-vars": "off", - "strict": "off" + "sort-vars": "off" } } |