Skip to content

Commit f146e6e

Browse files
committed
chore: migrate biome.json to 2.x schema
Root pins @biomejs/biome@^2.4.15 but biome.json still used the 1.8.3 schema, so biome 2.x refused to parse it (`files.ignore` was renamed to `files.includes` with negated globs). This broke `code:fix` and the per-package `lint` scripts entirely. Migrated via `biome migrate` and adopted biome's recommended folder-ignore form for nix/store. Faithful config migration only — no rule or behavior changes, and biome is not run in CI so this has no pipeline impact.
1 parent 917b5c0 commit f146e6e

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

biome.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
33
"files": {
4-
"ignore": ["**/package.json", ".turbo/", "dist", "**/nix/store/**"]
4+
"includes": [
5+
"**",
6+
"!**/package.json",
7+
"!**/.turbo/",
8+
"!**/dist",
9+
"!**/nix/store"
10+
]
511
},
612
"formatter": {
713
"indentStyle": "space",

0 commit comments

Comments
 (0)