Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
04f754e
Initial plan
Copilot Dec 3, 2025
7258553
Add Biome 2.x configuration reader with version detection and unified…
Copilot Dec 3, 2025
3054c4b
Fix double-prefixing of glob patterns that already start with **/ and…
Copilot Dec 3, 2025
e0460db
Address review feedback: remove re-exports, remove unused function, a…
Copilot Dec 3, 2025
f928ee0
Add root field support for Biome 2.x config and tests for nested conf…
Copilot Dec 3, 2025
e25bf13
Address code review: improve docstrings and simplify test assertion
Copilot Dec 3, 2025
8b6e276
Add code sharing for extends resolution and test for combined extends…
Copilot Dec 3, 2025
2ff05a2
Improve code review feedback: add includeConfigPath param and fix uns…
Copilot Dec 3, 2025
07bfffa
use json schema to generate types
tylerbutler Dec 3, 2025
80ee3d7
type fixes
tylerbutler Dec 3, 2025
a02357c
Merge branch 'main' into copilot/update-biomeconfigreader-for-2-x
tylerbutler Dec 3, 2025
29cb8bc
Address review feedback: add stopAt param, improve docs, share filter…
Copilot Dec 3, 2025
872b1ec
Clarify stopAt param documentation in findParentBiome2Configs
Copilot Dec 3, 2025
fa2c614
Rename class to BiomeConfigReaderV1, interface to BiomeConfigReader, …
Copilot Dec 3, 2025
ac756d9
Use createBiomeConfigReader factory in BiomeTask for auto-detection
Copilot Dec 3, 2025
c1bd1e8
Document globstar limitation and add tests for negation pattern ordering
Copilot Dec 3, 2025
e9ef09d
Implement ordered pattern processing for correct re-inclusion support…
Copilot Dec 3, 2025
514c658
Fix re-inclusion logic: use multimatch instead of ignore for include …
Copilot Dec 3, 2025
00ea3ff
Merge branch 'main' into copilot/update-biomeconfigreader-for-2-x
tylerbutler Dec 4, 2025
a47ecf0
Merge branch 'main' into copilot/update-biomeconfigreader-for-2-x
tylerbutler Dec 4, 2025
5e95bd8
policy
tylerbutler Dec 4, 2025
cee35e8
fixes
tylerbutler Dec 4, 2025
e9f11a5
unused var
tylerbutler Dec 4, 2025
fafd093
handle // microsyntax
tylerbutler Dec 9, 2025
e7f13fa
refactor: separate v1 and v2 biome config implementations
tylerbutler Dec 9, 2025
7a528f6
cleanup
tylerbutler Dec 9, 2025
202fc6d
add tests
tylerbutler Dec 9, 2025
b32068b
fix test cases
tylerbutler Dec 9, 2025
43e8a1e
ignore
tylerbutler Dec 9, 2025
206c217
policy
tylerbutler Dec 9, 2025
9eec8ac
fix(build-tools): address PR feedback for Biome 2.x config reader
tylerbutler Dec 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build-tools/packages/build-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"format": "npm run format:biome",
"format:biome": "biome check --write .",
"json-schema-to-typescript:biomeConfigTypes": "json2ts --input node_modules/@biomejs/biome/configuration_schema.json --output src/common/biomeConfigTypes.d.ts",
"json-schema-to-typescript:biome2ConfigTypes": "echo 'To generate Biome 2.x types, install @biomejs/[email protected] and run: json2ts --input node_modules/@biomejs/biome/configuration_schema.json --output src/common/biome2ConfigTypes.d.ts'",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"list-repo-files": "cd ../../.. && git ls-files -co --exclude-standard",
Expand Down
Loading
Loading