From 332e90d0234309853e4c71213cb71ca18c899707 Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Mon, 17 Mar 2025 00:10:28 -0400 Subject: [PATCH] "noUnusedParameters": true --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 0f40c53..ab67711 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,6 +16,7 @@ /* Linting */ "strict": true, "noUnusedLocals": true, + "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true, "noImplicitAny": true,