Enabled ESLint's "eqeqeq" rule.

https://eslint.org/docs/rules/eqeqeq
This commit is contained in:
Jon Dufresne 2020-05-16 09:42:51 -07:00 committed by Mariusz Felisiak
parent 95289e1029
commit d00e034a28
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@
"comma-spacing": ["error", {"before": false, "after": true}],
"curly": ["error", "all"],
"dot-notation": ["error", {"allowKeywords": true}],
"eqeqeq": ["error"],
"indent": ["error", 4],
"key-spacing": ["error", {"beforeColon": false, "afterColon": true}],
"linebreak-style": ["error", "unix"],