From a5cc150d6f51cd887ce0f1ce48f73d6f40e47408 Mon Sep 17 00:00:00 2001 From: Vincent Smedinga Date: Wed, 24 Jan 2024 13:16:11 +0100 Subject: [PATCH] Revert "Add linter rules for explicit type imports and exports" This reverts commit 592318cdc58f23558e77bc11a7397a83246c505f. --- .eslintrc.ts.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.eslintrc.ts.json b/.eslintrc.ts.json index e82fc7cbdd..c432da3e2b 100644 --- a/.eslintrc.ts.json +++ b/.eslintrc.ts.json @@ -1,7 +1,5 @@ { "rules": { - "@typescript-eslint/consistent-type-definitions": ["error", "type"], - "@typescript-eslint/consistent-type-exports": ["error", { "fixMixedExportsWithInlineTypeSpecifier": false }], - "@typescript-eslint/consistent-type-imports": "error" + "@typescript-eslint/consistent-type-definitions": ["error", "type"] } }