Avoid unused vars

This commit is contained in:
Philipp Kief 2024-07-08 10:40:36 +02:00
parent 5a9602e5a3
commit 5b7082b93c
No known key found for this signature in database
GPG Key ID: CC872C197CBB41C8

View File

@ -15,7 +15,10 @@
"rules": {
"recommended": false,
"complexity": { "useArrowFunction": "off" },
"correctness": { "noUnsafeFinally": "error" },
"correctness": {
"noUnsafeFinally": "error",
"noUnusedVariables": "error"
},
"security": { "noGlobalEval": "error" },
"style": {
"noVar": "error",