config(link-checker): exclude Docker Hub URLs

Add exclusion pattern for hub.docker.com to both production
and default link-checker configurations.

Docker Hub often implements rate limiting and bot detection that
causes false positive link validation failures in CI environments.
pull/6298/head
Jason Stirnaman 2025-08-19 10:57:24 -05:00
parent d61ccaea31
commit 9a0d4035d8
2 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,9 @@ exclude = [
"^https?://stackoverflow\\.com",
"^https?://.*\\.stackoverflow\\.com",
# Docker Hub URLs (rate limiting and bot detection)
"^https?://hub\\.docker\\.com",
# Common documentation placeholders
"YOUR_.*",
"REPLACE_.*",

View File

@ -63,6 +63,9 @@ exclude = [
"^https?://stackoverflow\\.com",
"^https?://.*\\.stackoverflow\\.com",
# Docker Hub URLs (rate limiting and bot detection)
"^https?://hub\\.docker\\.com",
# InfluxData support URLs (certificate/SSL issues in CI)
"^https?://support\\.influxdata\\.com",