From 91a6db09f77ed3f4d3fd03800ede474654178471 Mon Sep 17 00:00:00 2001 From: Wouter van Veelen Date: Mon, 24 Nov 2025 00:36:40 +0100 Subject: [PATCH] remove linting from tsconfig that is done by eslint --- tsconfig.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e26575d..a453315 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,11 +18,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "erasableSyntaxOnly": true, "noFallthroughCasesInSwitch": true, - "noUncheckedSideEffectImports": true + "allowSyntheticDefaultImports": true }, "include": ["src", "prettier.config.ts", "eslint.config.ts", "vite.config.ts"] }