From 8b2618689128948b6dc1ccf63318f4b4f8be2c26 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Thu, 26 Dec 2024 16:28:43 -0600 Subject: [PATCH] Turned down linting strictness for unused variables in TS --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a7fc6fb..e49f745 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,8 +16,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "noFallthroughCasesInSwitch": true }, "include": ["src"],