From c42c79cced451761edfb700b66aacfe0be087fc6 Mon Sep 17 00:00:00 2001 From: Borewit Date: Fri, 9 Aug 2024 11:48:22 +0200 Subject: [PATCH] Do not allow unused imports --- biome.jsonc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/biome.jsonc b/biome.jsonc index 4b9b3957..4bc6644d 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -9,6 +9,9 @@ "linter": { "enabled": true, "rules": { + "correctness": { + "noUnusedImports": "error" + }, "recommended": true, "complexity": { "noForEach": "off"