From 12ef730fc2447f81adf1053607956dc520152e55 Mon Sep 17 00:00:00 2001 From: fro-bot <80104189+fro-bot@users.noreply.github.com> Date: Tue, 16 Jun 2026 05:22:45 +0000 Subject: [PATCH] fix(lint): pre-fix Biome 2.5.0 errors before dep update merges MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add 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. --- docs/public/favicon.svg | 3 ++- docs/src/styles/custom.css | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/public/favicon.svg b/docs/public/favicon.svg index 94b2512e..45a19376 100644 --- a/docs/public/favicon.svg +++ b/docs/public/favicon.svg @@ -1,4 +1,5 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="-86 -70 172 172"> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-86 -70 172 172" role="img" aria-labelledby="favicon-title"> + <title id="favicon-title">Systematic diff --git a/docs/src/styles/custom.css b/docs/src/styles/custom.css index 971b75a5..f43daba7 100644 --- a/docs/src/styles/custom.css +++ b/docs/src/styles/custom.css @@ -202,12 +202,12 @@ gap: var(--space-2); } -.install-title { - margin: 0 !important; +.install-header .install-title { + margin: 0; font-family: var(--sl-font-heading); - font-size: 1.25rem !important; + font-size: 1.25rem; font-weight: 500; - color: var(--sl-color-white) !important; + color: var(--sl-color-white); display: flex; align-items: baseline; gap: var(--space-2);