From 8676655172d49c28598206aa30f79c838da610e5 Mon Sep 17 00:00:00 2001 From: G Date: Thu, 25 Apr 2024 09:05:54 +0000 Subject: [PATCH] warning on unused imports and variables --- biome.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/biome.json b/biome.json index 86b2b92..f8103ba 100644 --- a/biome.json +++ b/biome.json @@ -17,6 +17,10 @@ "enabled": true, "rules": { "recommended": true, + "correctness": { + "noUnusedImports": "warn", + "noUnusedVariables": "warn" + }, "complexity": { "noExcessiveCognitiveComplexity": "error" }, -- libgit2 0.27.1