From 8a3870f2979c578cc6f5dadf00971dfaf61e3a00 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Wed, 6 Mar 2024 12:14:01 +0100 Subject: [PATCH] style(typescript): disable noUnusedLocals so typechecking doesnt complain about react imports --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 424f552007c..cb00b4c43b2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,7 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, + // "noUnusedLocals": true, // Disabled because of React being imported everywhere "noUnusedParameters": true, "noFallthroughCasesInSwitch": true,