Skip to content

Commit 7a25b3b

Browse files
committed
ci: fix false positives in link checker (file:// + SoundCloud)
1 parent 0202429 commit 7a25b3b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.lychee.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@
55
# - mailto: links are not real HTTP URLs
66
# - soundcloud.com: blocks automated link checkers with 403 (anti-bot protection)
77
# - formspree.io: form POST endpoints return 405 for GET requests (expected behavior)
8+
# - file://: local filesystem paths used by GitHub Actions runner (not real web links)
9+
# - mysql.com: returns 403 for bots
10+
# - scripts.sil.org: known redirect issues
811
exclude = [
912
"^mailto:",
1013
"soundcloud\\.com",
1114
"formspree\\.io",
1215
"mysql\\.com",
13-
"scripts\\.sil\\.org"
16+
"scripts\\.sil\\.org",
17+
"^file://"
1418
]

0 commit comments

Comments
 (0)