fix(lint): pre-fix Biome 2.5.0 lint errors before dep update merges#540
Open
fro-bot wants to merge 1 commit into
Open
fix(lint): pre-fix Biome 2.5.0 lint errors before dep update merges#540fro-bot wants to merge 1 commit into
fro-bot wants to merge 1 commit into
Conversation
- Add <title> and aria-labelledby to docs/public/favicon.svg to satisfy the new noSvgWithoutTitle a11y rule introduced in Biome 2.5.0 - Replace .install-title !important overrides in custom.css with higher- specificity .install-header .install-title selector to satisfy the noImportantStyles rule (3 violations) without weakening the style intent These changes ensure lint passes cleanly after PR #538 (Biome 2.4.16 → 2.5.0) merges.
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.
Summary
Pre-emptive fixes for two new Biome 2.5.0 error-level rules that cause PR #538 (
@biomejs/biome2.4.16 → 2.5.0) to fail the Lint check.Problems fixed
1.
lint/a11y/noSvgWithoutTitle—docs/public/favicon.svgBiome 2.5.0 added a new a11y rule requiring SVG elements to have an accessible title. Added
<title id="favicon-title">Systematic</title>androle="img" aria-labelledby="favicon-title"attributes.2.
lint/complexity/noImportantStyles—docs/src/styles/custom.css(3 violations).install-titleused!importantto override Starlight's heading specificity onmargin,font-size, andcolor. Replaced with a higher-specificity selector.install-header .install-title(2 class chain) which beats the Starlighth3rule without!important.Verification
bun run lint— exits 0, 6 warnings only (persistent complexity warnings, unchanged)bun run docs:verify— 112 pages built successfullyContext
PR #538 (
chore(dev): update all non-major dependencies to v2.5.0) touchespackage.json+bun.lockand cannot be repaired by fro-bot directly. Merging this PR first unblocks #538.Autohealing run: 2026-06-16