Skip to content

Commit 70e6d9d

Browse files
committed
fix(lint): exclude test fixtures from Biome linting
Update biome.json to use `!**/test/fixtures` pattern instead of `!test/**/fixtures` to properly exclude all test fixture directories from linting. This prevents lint errors on third-party test fixtures.
1 parent c8c33a7 commit 70e6d9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

biome.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"!**/node_modules",
2020
"!**/package.json",
2121
"!**/pnpm-lock.yaml",
22-
"!test/**/fixtures",
23-
"!test/**/packages"
22+
"!**/test/fixtures",
23+
"!**/test/packages"
2424
],
2525
"maxSize": 8388608
2626
},

0 commit comments

Comments
 (0)