1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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

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"],