From 8d47bd2a2f4ec029cea250d1ecc08bdf0e928f6f Mon Sep 17 00:00:00 2001 From: Toby Hede Date: Wed, 19 Aug 2026 12:36:24 +1000 Subject: [PATCH] fix(biome): align the config schema with the version actually installed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `biome.json` declared schema 2.5.2 while `package.json` has required `^2.5.3` and the lockfile has resolved 2.5.3 since before this branch — so `biome check` exits 1 with "The configuration schema version does not match the CLI version 2.5.3", and `code:check` fails for a reason unrelated to any code in the tree. It stayed hidden because node_modules on this machine still held 2.5.2; a `pnpm install` that brings the tree in line with its own lockfile is what surfaces it, which is exactly what CI does on every run. --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 63fb55273..78ba0f7a6 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.5.2/schema.json", + "$schema": "https://biomejs.dev/schemas/2.5.3/schema.json", "files": { "includes": [ "**",