From d898aeaa06896cbdc010ec98e1cc30d2ab0fe676 Mon Sep 17 00:00:00 2001 From: Wojciech Maj Date: Wed, 14 Aug 2024 17:15:02 +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 02caffa10..c8ebc01be 100644 --- a/biome.json +++ b/biome.json @@ -12,6 +12,10 @@ "complexity": { "noUselessSwitchCase": "off" }, + "correctness": { + "noUnusedImports": "warn", + "noUnusedVariables": "warn" + }, "suspicious": { "noConsoleLog": "warn" }