From 00e1695a1598540a06716b27084163b1a63cefe3 Mon Sep 17 00:00:00 2001 From: Timo Bechtel <48655057+TimoBechtel@users.noreply.github.com> Date: Thu, 16 May 2024 18:45:30 +0200 Subject: [PATCH] feat(eslint): update eslint typescript config --- eslint/rules/typescript.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint/rules/typescript.cjs b/eslint/rules/typescript.cjs index 811d266..efac3a5 100644 --- a/eslint/rules/typescript.cjs +++ b/eslint/rules/typescript.cjs @@ -102,5 +102,7 @@ module.exports = defineConfig({ // There are cases where using the index signature is more descriptive // as the index can be named '@typescript-eslint/consistent-indexed-object-style': 'off', + // Enforce using a top-level type qualifier for imports when only types are imported using the inline type qualifier + '@typescript-eslint/no-import-type-side-effects': 'error', }, });