mirror of https://github.com/zulip/zulip.git
linter: Simplify '===' eslint rule configuration.
We don't need the allow-null setting.
This commit is contained in:
parent
aaaaa66d4c
commit
2f1e1db269
|
@ -175,7 +175,7 @@
|
||||||
"curly": 2,
|
"curly": 2,
|
||||||
"dot-notation": [ "error", { "allowKeywords": true } ],
|
"dot-notation": [ "error", { "allowKeywords": true } ],
|
||||||
"eol-last": [ "error", "always" ],
|
"eol-last": [ "error", "always" ],
|
||||||
"eqeqeq": [ "error", "allow-null" ],
|
"eqeqeq": 2,
|
||||||
"func-style": [ "off", "expression" ],
|
"func-style": [ "off", "expression" ],
|
||||||
"guard-for-in": 2,
|
"guard-for-in": 2,
|
||||||
"keyword-spacing": [ "error",
|
"keyword-spacing": [ "error",
|
||||||
|
|
Loading…
Reference in New Issue