From 3023b7df0a20152ed8bbf2f8be70cffcca73b938 Mon Sep 17 00:00:00 2001 From: Matt Calthrop Date: Wed, 22 Jul 2026 13:34:07 +0100 Subject: [PATCH] chore(biome): migrate config to CLI v2.5.5 Run `biome migrate` to align the config with the installed CLI: bump the $schema to 2.5.5 and replace the deprecated `rules.recommended: true` with `rules.preset: "recommended"`. Co-Authored-By: Claude Opus 4.8 (1M context) --- biome.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biome.json b/biome.json index 7741542..2b4542a 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.5.5/schema.json", "vcs": { "enabled": true, "clientKind": "git", @@ -39,7 +39,7 @@ "linter": { "enabled": true, "rules": { - "recommended": true, + "preset": "recommended", "complexity": { "noForEach": "off", "useArrowFunction": "error"