We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a637b commit a70dcfbCopy full SHA for a70dcfb
src/plugins/typescript.ts
@@ -45,7 +45,12 @@ export const settings: Linter.Config = {
45
"@typescript-eslint/consistent-indexed-object-style": "error",
46
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
47
"@typescript-eslint/consistent-type-imports": "error",
48
- "@typescript-eslint/dot-notation": "error",
+ "@typescript-eslint/dot-notation": [
49
+ "error",
50
+ {
51
+ allowIndexSignaturePropertyAccess: true,
52
+ },
53
+ ],
54
"@typescript-eslint/explicit-function-return-type": [
55
"off",
56
{
0 commit comments