From 38083f4425efff78b607d8d1b20c5c8b8ee63ec3 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Sun, 24 Aug 2025 22:33:41 -0500 Subject: [PATCH] chore: ignore Claude URLs and full production URLs (esp. canonical meta links) --- .ci/link-checker/production.lycherc.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.ci/link-checker/production.lycherc.toml b/.ci/link-checker/production.lycherc.toml index 37f692e47..c838590df 100644 --- a/.ci/link-checker/production.lycherc.toml +++ b/.ci/link-checker/production.lycherc.toml @@ -69,6 +69,15 @@ exclude = [ # InfluxData support URLs (certificate/SSL issues in CI) "^https?://support\\.influxdata\\.com", + # AI platforms (often block automated requests) + "^https?://claude\\.ai", + "^https?://.*\\.claude\\.ai", + + # Production site URLs (when testing locally, these should be relative) + # This excludes canonical URLs and other absolute production URLs + # TODO: Remove after fixing canonical URL generation or link-checker domain replacement + "^https://docs\\.influxdata\\.com/", + # Common documentation placeholders "YOUR_.*", "REPLACE_.*",