From 8f7feb9ad2cae00c57d90d9e0100a72fb17da209 Mon Sep 17 00:00:00 2001 From: dw-0 Date: Tue, 29 Oct 2024 13:33:14 +0100 Subject: [PATCH] feat: turn off @typescript-eslint/consistent-indexed-object-style rule Signed-off-by: Dominik Willner --- .eslintrc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 79d34dd06..29958adbd 100644 --- a/.eslintrc.json +++ b/.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 } } ],