From a2e5cfce24ec456390dc073d5d5a732dc7613b08 Mon Sep 17 00:00:00 2001 From: Edouard Vanbelle Date: Tue, 14 Apr 2026 19:03:54 +0200 Subject: [PATCH] chore(biome): JS check: error on undeclared variables/function --- biome.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 7f0377a0..20ba54c3 100644 --- a/biome.json +++ b/biome.json @@ -14,7 +14,8 @@ "rules": { "recommended": true, "correctness": { - "noUnusedVariables": "warn" + "noUnusedVariables": "warn", + "noUndeclaredVariables": "error" }, "style": { "noDescendingSpecificity": "off"