From b730152b6ee359677cbeaf738bc6145bef4d172a Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Wed, 26 Nov 2025 08:48:02 -0800 Subject: [PATCH] feat: add noUnusedFunctionParameters rule to biome.json --- biome.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/biome.json b/biome.json index 68eca9c..c090c45 100644 --- a/biome.json +++ b/biome.json @@ -38,6 +38,10 @@ "noUnusedVariables": { "level": "warn", "fix": "safe" + }, + "noUnusedFunctionParameters": { + "level": "warn", + "fix": "safe" } } }