mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-19 16:39:50 +00:00
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:
parent
9e54f0cf57
commit
588cecc435
3 changed files with 7 additions and 5 deletions
|
|
@ -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
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue