Browse Source

feat: turn off @typescript-eslint/consistent-indexed-object-style rule

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
pull/3999/head
dw-0 10 months ago
parent
commit
8f7feb9ad2
  1. 4
      .eslintrc.json

4
.eslintrc.json

@ -40,6 +40,7 @@
],
"rules": {
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/explicit-member-accessibility": [
"off",
{
@ -142,8 +143,7 @@
// The following rules are part of @typescript-eslint/stylistic-type-checked
// and can be remove once solved
"@typescript-eslint/prefer-nullish-coalescing": "warn", // TODO: Requires strictNullChecks: true
"@typescript-eslint/consistent-indexed-object-style": "warn"
"@typescript-eslint/prefer-nullish-coalescing": "warn" // TODO: Requires strictNullChecks: true
}
}
],

Loading…
Cancel
Save