From 659877081dd9de58676a0f3c04a4f3ff1fbb4938 Mon Sep 17 00:00:00 2001 From: EduardF1 <50618110+EduardF1@users.noreply.github.com> Date: Fri, 26 Jun 2026 14:49:28 +0200 Subject: [PATCH] chore: align Biome config with pinned 2.4.14 and modern folder-ignore syntax The repo pins @biomejs/biome to 2.4.14, but every biome.json still declares the 2.3.14 \\\ and uses the pre-2.2.0 \!folder/**\ ignore syntax. Under the pinned CLI this surfaces 5 schema-version mismatch notices and 5 lint/suspicious/useBiomeIgnoreFolder warnings on a clean checkout. - bump \\\ to 2.4.14 in the root and all four package configs (what \iome migrate\ emits) - adopt the new folder-ignore syntax (\!dist/**\ -> \!dist\, etc.) via Biome's own safe fix; file-glob negations are left untouched \iome check\ on the config files is now clean. No source or ignore-semantics change -- folder ignores keep the same meaning per Biome's safe fix. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- biome.json | 2 +- packages/openapi-fetch/biome.json | 4 ++-- packages/openapi-react-query/biome.json | 4 ++-- packages/openapi-typescript-helpers/biome.json | 2 +- packages/openapi-typescript/biome.json | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/biome.json b/biome.json index 5da38550c..a1c5b125c 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.14/schema.json", "root": true, "files": { "includes": ["**", "!**/dist", "!**/package.json"] diff --git a/packages/openapi-fetch/biome.json b/packages/openapi-fetch/biome.json index 99724ae16..cd592b2c7 100644 --- a/packages/openapi-fetch/biome.json +++ b/packages/openapi-fetch/biome.json @@ -1,9 +1,9 @@ { "root": false, - "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.14/schema.json", "extends": "//", "files": { - "includes": ["src/**", "test/**", "!**/examples/**", "!test/**/schemas/**", "!test/bench/**/*.min.js"] + "includes": ["src/**", "test/**", "!**/examples", "!test/**/schemas", "!test/bench/**/*.min.js"] }, "linter": { "rules": { diff --git a/packages/openapi-react-query/biome.json b/packages/openapi-react-query/biome.json index c57c07218..6ce876571 100644 --- a/packages/openapi-react-query/biome.json +++ b/packages/openapi-react-query/biome.json @@ -1,9 +1,9 @@ { "root": false, - "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.14/schema.json", "extends": "//", "files": { - "includes": ["**", "!dist/**", "!test/fixtures/**"] + "includes": ["**", "!dist", "!test/fixtures"] }, "linter": { "rules": { diff --git a/packages/openapi-typescript-helpers/biome.json b/packages/openapi-typescript-helpers/biome.json index 50eeaaf54..d5792cb2f 100644 --- a/packages/openapi-typescript-helpers/biome.json +++ b/packages/openapi-typescript-helpers/biome.json @@ -1,6 +1,6 @@ { "root": false, - "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.14/schema.json", "extends": "//", "files": { "includes": ["**/*"] diff --git a/packages/openapi-typescript/biome.json b/packages/openapi-typescript/biome.json index 79c1fc825..aadd2702d 100644 --- a/packages/openapi-typescript/biome.json +++ b/packages/openapi-typescript/biome.json @@ -1,8 +1,8 @@ { "root": false, - "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.14/schema.json", "extends": "//", "files": { - "includes": ["bin/**", "!examples/**", "src/**", "test/**", "!**/fixtures/**/*"] + "includes": ["bin/**", "!examples", "src/**", "test/**", "!**/fixtures/**/*"] } }