Add lint/correctness/noUnusedImports rule

This commit is contained in:
NightKev 2025-03-29 01:24:55 -07:00
parent ef48ee61de
commit 2bea21f054

View File

@ -50,7 +50,8 @@
"noUndeclaredVariables": "off",
"noUnusedVariables": "error",
"noSwitchDeclarations": "warn", // TODO: refactor and make this an error
"noVoidTypeReturn": "warn" // TODO: Refactor and make this an error
"noVoidTypeReturn": "warn", // TODO: Refactor and make this an error
"noUnusedImports": "error"
},
"style": {
"noVar": "error",