ci: exclude public/ from Biome and disable automerge for Biome updates (#912)

Biome 2.5.7 (auto-merged by Renovate in #904 with failing checks) started
parsing SVG files, breaking lint on generated assets in public/. Exclude
the whole public/ directory instead of just *.svg so future parser
changes can't hit generated files again.

Biome minor updates can also introduce new lint rules for source code,
so require manual review for its Renovate PRs instead of automerge.
This commit is contained in:
Dayuan Jiang
2026-08-08 12:30:07 +09:00
committed by GitHub
parent 6493652ff0
commit 81da9fad83
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -33,6 +33,11 @@
"matchPackagePatterns": ["@ai-sdk/*", "ai", "next"],
"groupName": "Core framework packages",
"automerge": false
},
{
"matchPackageNames": ["@biomejs/biome"],
"groupName": "Biome",
"automerge": false
}
],
"vulnerabilityAlerts": {
+1 -1
View File
@@ -7,7 +7,7 @@
},
"files": {
"ignoreUnknown": false,
"includes": ["**", "!public/**/*.svg"]
"includes": ["**", "!public"]
},
"formatter": {
"enabled": true,