fix(biome): align the config schema with the version actually installed - #917
Open
tobyhede wants to merge 1 commit into
Open
fix(biome): align the config schema with the version actually installed#917tobyhede wants to merge 1 commit into
tobyhede wants to merge 1 commit into
Conversation
`biome.json` declared schema 2.5.2 while `package.json` has required `^2.5.3` and the lockfile has resolved 2.5.3 since before this branch — so `biome check` exits 1 with "The configuration schema version does not match the CLI version 2.5.3", and `code:check` fails for a reason unrelated to any code in the tree. It stayed hidden because node_modules on this machine still held 2.5.2; a `pnpm install` that brings the tree in line with its own lockfile is what surfaces it, which is exactly what CI does on every run.
|
coderdan
approved these changes
Aug 19, 2026
coderdan
left a comment
Contributor
There was a problem hiding this comment.
Took me a while, this one. Please refrain from submitting enormous PRs :p
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
One line.
code:checkcurrently exits 1 onmainfor a reason unrelated to any code in the tree.package.jsonhas required^2.5.3andpnpm-lock.yamlhas resolved 2.5.3 since before this was noticed; onlybiome.jsonwas left behind at 2.5.2.Why it has stayed hidden: a
node_modulesthat still holds 2.5.2 passes. It fails the moment the tree is brought in line with its own lockfile — which is whatpnpm install --frozen-lockfiledoes on every CI run. Found while running a plainpnpm installon a branch off main.Extracted from #915 so it does not wait on a large review.