fix(ci): restore tauri.conf.json's formatting, broken by the 5.0.0 bump - #264
Merged
Conversation
#262 edited the version with a JSON serializer, which re-serialised the whole file and expanded "scope": ["**"] across three lines. Biome's formatter wants it inline, so lint has failed on main since that merge, and every branch cut from main inherits it. That went unnoticed because #262's own CI was reported as passing when only the Vercel checks had run; the Actions run failed and was not re-read before merge. A version bump has no business reformatting the file it edits. If this is done again by hand, change the one line rather than round-tripping the document. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
adulbrich
added a commit
that referenced
this pull request
Aug 7, 2026
…mp (#264) #262 edited the version with a JSON serializer, which re-serialised the whole file and expanded "scope": ["**"] across three lines. Biome's formatter wants it inline, so lint has failed on main since that merge, and every branch cut from main inherits it. That went unnoticed because #262's own CI was reported as passing when only the Vercel checks had run; the Actions run failed and was not re-read before merge. A version bump has no business reformatting the file it edits. If this is done again by hand, change the one line rather than round-tripping the document. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
mainis currently failing lint. One line, one file.#262 edited the version with a JSON serializer, which re-serialised the whole document and expanded
"scope": ["**"]across three lines. Biome's formatter wants it inline, sonpm run linthas failed onmainsince that merge and every branch cut from it inherits the failure.That is the entire change. Versions are untouched and still agree at 5.0.0 across
package.json,tauri.conf.jsonandCargo.toml, sorelease.yml's check still passes.How it got in
#262's CI was reported as passing when only the two Vercel checks had reported; the Actions run failed and was not re-read before the merge. Visible now in the run list as
chore(release): 5.0.0 — CI (web) — failure.Worth remembering
A version bump has no business reformatting the file it edits. Doing this by hand, or with a targeted replacement rather than a round-trip through a JSON serializer, avoids the whole class.
Blocks #263, which is otherwise green: its end-to-end jobs pass on both engines and only this inherited lint error fails.
🤖 Generated with Claude Code