fix: resolve biome nested root configuration conflict (#1896)

Move shared biome.json from lint/ to repo root so it's the single root
config. Nested configs (packages/cli, .claude/skills/setup-spa) get
`"root": false` via `biome migrate`. This fixes lint failing when run
from the repo root.

Co-authored-by: lab <6723574+louisgv@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
A 2026-02-24 21:57:50 -08:00 committed by GitHub
parent 9e54f0cf57
commit 588cecc435
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 5 deletions

View file

@ -1,6 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",
"extends": ["../../../lint/biome.json"],
"root": false,
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"extends": ["../../../biome.json"],
"vcs": {
"enabled": false
},

View file

@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",

View file

@ -1,6 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",
"extends": ["../../lint/biome.json"],
"root": false,
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"extends": ["../../biome.json"],
"vcs": {
"enabled": true,
"clientKind": "git",