style(typescript): disable noUnusedLocals so typechecking doesnt complain about react imports

This commit is contained in:
Jack Westbrook
2025-03-03 09:43:27 +01:00
parent 4101d2adbf
commit 8a3870f297
+1 -1
View File
@@ -16,7 +16,7 @@
/* Linting */
"strict": true,
"noUnusedLocals": true,
// "noUnusedLocals": true, // Disabled because of React being imported everywhere
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,