From 2cb786b2b4ef207638ae49a42b040d352fc40174 Mon Sep 17 00:00:00 2001 From: fro-bot <80104189+fro-bot@users.noreply.github.com> Date: Sun, 31 May 2026 16:31:09 +0000 Subject: [PATCH 1/2] fix(lint): update biome schema to match CLI version 2.4.16 --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 9ceb686..735d00f 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.4.15/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.16/schema.json", "assist": { "actions": { "source": { From f4185f46499525bcc2a0c2a7735d5b87defec2ee Mon Sep 17 00:00:00 2001 From: fro-bot <80104189+fro-bot@users.noreply.github.com> Date: Mon, 15 Jun 2026 17:44:56 +0000 Subject: [PATCH 2/2] fix(lint): migrate biome config to v2.5.0 schema and preset syntax - Update $schema from 2.4.15 to 2.5.0 to match installed @biomejs/biome@2.5.0 - Replace deprecated 'recommended' field with 'preset' per Biome v2.5 migration --- biome.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biome.json b/biome.json index 735d00f..da5ef95 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.4.16/schema.json", + "$schema": "https://biomejs.dev/schemas/2.5.0/schema.json", "assist": { "actions": { "source": { @@ -10,7 +10,7 @@ "linter": { "enabled": true, "rules": { - "recommended": true, + "preset": "recommended", "complexity": { "noExcessiveCognitiveComplexity": "warn" },