From 74c139bb9e70c85d034e2091558934c4add52e45 Mon Sep 17 00:00:00 2001 From: Evgeny Orekhov Date: Thu, 20 Jan 2022 12:40:10 +0300 Subject: [PATCH] Fix #356 `@typescript-eslint/consistent-indexed-object-style` fails... ...on circular references. Use index signature for the sake of consistency. --- ts.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ts.json b/ts.json index e248ebe0..9f14bdf5 100644 --- a/ts.json +++ b/ts.json @@ -82,6 +82,11 @@ { "allowThrowingAny": false, "allowThrowingUnknown": false } ], + "@typescript-eslint/consistent-indexed-object-style": [ + "error", + "index-signature" + ], + "quotes": "off", "@typescript-eslint/quotes": [ "error",