From ac9405bc41c8749aa8132b3c709dcc6b4e5db0b7 Mon Sep 17 00:00:00 2001 From: Gloire Rubambiza Date: Tue, 16 Jun 2026 09:41:49 -0400 Subject: [PATCH] fix: Skip Google Fonts preconnect URLs in link checker The link checker reports false positives for fonts.googleapis.com and fonts.gstatic.com because these are hints (bare domains with no path) that return HTTP 404 when fetched directly. Fixes #84 Signed-off-by: Gloire Rubambiza --- skip_file.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/skip_file.txt b/skip_file.txt index 11d9d33..19c23bd 100644 --- a/skip_file.txt +++ b/skip_file.txt @@ -1,2 +1,6 @@ # URLs matching these patterns will be skipped by the link checker. # Each line is a regular expression. + +# Google Fonts preconnect hints — bare domains return 404 when fetched directly +fonts\.googleapis\.com +fonts\.gstatic\.com