1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-17 01:15:52 +02:00

fix: eqeqeq ignore usage of null

This commit is contained in:
Divlo 2022-02-19 16:42:47 +01:00
parent c9ef195013
commit 8cadf4a235
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9

View File

@ -88,14 +88,13 @@
],
"valid-typeof": ["error", { "requireStringLiterals": true }],
"class-methods-use-this": "error",
"consistent-this": "error",
"default-param-last": "off",
"@typescript-eslint/default-param-last": "error",
"default-case-last": "error",
"dot-notation": "off",
"@typescript-eslint/dot-notation": ["error", { "allowKeywords": true }],
"eqeqeq": "error",
"eqeqeq": ["error", "always", { "null": "ignore" }],
"grouped-accessor-pairs": "error",
"new-cap": [
"error",