Skip to content

Commit 3615536

Browse files
authored
chore: exclude generated changelog audit ledgers from Biome (#128)
The changelog generator writes scripts/changelog/audit/<n>.json with expanded arrays that Biome's formatter rejects, so CI fails on every changelog draft until someone reformats the file by hand. The ledger is a generated record and no one edits it, so skip it in the formatter.
1 parent 9310ee5 commit 3615536

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

‎biome.json‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/2.3.3/schema.json",
33
"files": {
4-
"ignoreUnknown": false
4+
"ignoreUnknown": false,
5+
"includes": ["**", "!scripts/changelog/audit/**"]
56
},
67
"formatter": {
78
"enabled": true,

0 commit comments

Comments
 (0)