From 1af2b623ed7c6e3f8efef0af5c61ed8188f4ca23 Mon Sep 17 00:00:00 2001 From: "cartsnitch-engineer[bot]" <269717931+cartsnitch-engineer[bot]@users.noreply.github.com> Date: Tue, 31 Mar 2026 09:23:25 +0000 Subject: [PATCH] fix(lhci): correct score thresholds per spec (accessibility 0.9, performance 0.7) --- lighthouserc.json | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/lighthouserc.json b/lighthouserc.json index 06b3806..af914e3 100644 --- a/lighthouserc.json +++ b/lighthouserc.json @@ -8,18 +8,13 @@ "assert": { "preset": "lighthouse:no-pwa", "assertions": { - "categories:performance": ["warn", { "minScore": 0.5 }], - "categories:accessibility": ["error", { "minScore": 0.7 }], - "categories:best-practices": ["warn", { "minScore": 0.8 }], - "categories:seo": ["warn", { "minScore": 0.7 }], - "errors-in-console": ["warn"], - "network-dependency-tree-insight": ["warn"], - "robots-txt": ["warn"], - "unused-javascript": ["warn"] + "categories:performance": ["warn", { "minScore": 0.7 }], + "categories:accessibility": ["error", { "minScore": 0.9 }], + "categories:best-practices": ["warn", { "minScore": 0.8 }] } }, "upload": { "target": "temporary-public-storage" } } -} \ No newline at end of file +}