From d770d1366e910dd758cd15ecb2faa88313e1ec4f Mon Sep 17 00:00:00 2001 From: Wojciech Maj Date: Wed, 14 Aug 2024 17:19:12 +0200 Subject: [PATCH] Enable noUnusedImports and noUnusedVariables in Biome --- biome.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/biome.json b/biome.json index 02caffa1..c8ebc01b 100644 --- a/biome.json +++ b/biome.json @@ -12,6 +12,10 @@ "complexity": { "noUselessSwitchCase": "off" }, + "correctness": { + "noUnusedImports": "warn", + "noUnusedVariables": "warn" + }, "suspicious": { "noConsoleLog": "warn" }