Exclude `tomlee.co` from link-checking (#1356)

https://tomlee.co/2014/04/a-more-detailed-tour-of-the-rust-compiler/ returns 404 on CI even though it's not actually 404.
So, that doesn't return any useful result, let's ignore it.
Also, formatted the exclude list for readability.
This commit is contained in:
Yuki Okushi 2022-05-25 08:01:26 +09:00 committed by GitHub
parent 0cd9842821
commit 2ba653e32e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -21,7 +21,18 @@ level = 0
[output.linkcheck] [output.linkcheck]
command = "ci/linkcheck.sh" command = "ci/linkcheck.sh"
follow-web-links = true follow-web-links = true
exclude = [ "crates\\.io", "gcc\\.godbolt\\.org", "youtube\\.com", "youtu\\.be", "dl\\.acm\\.org", "cs\\.bgu\\.ac\\.il", "www\\.amazon\\.com", "www\\.rustaceans\\.org", "play\\.rust-lang\\.org" ] exclude = [
"crates\\.io",
"gcc\\.godbolt\\.org",
"youtube\\.com",
"youtu\\.be",
"dl\\.acm\\.org",
"cs\\.bgu\\.ac\\.il",
"www\\.amazon\\.com",
"www\\.rustaceans\\.org",
"play\\.rust-lang\\.org",
"tomlee\\.co"
]
cache-timeout = 86400 cache-timeout = 86400
warning-policy = "error" warning-policy = "error"