-
Notifications
You must be signed in to change notification settings - Fork 0
/
lychee.toml
20 lines (20 loc) · 829 Bytes
/
lychee.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Cache the results of Lychee if ran locally in order to minimise the chance of rate limiting
cache = true
# Ignore all private link (such as localhost) to avoid errors
exclude_all_private = true
# HTTP status code: 429 (Too Many Requests) will also be treated as a valid link if Lychee gets rate limited
accept = [200, 429]
# retry
max_retries = 6
# Explicitly exclude some URLs
exclude = [
"https://twitter.nuxt.dev/",
"https://github.com/nuxt/translations/discussions/4",
"https://stackoverflow.com/help/minimal-reproducible-example",
# TODO: remove when their SSL certificate is valid again
"https://www.conventionalcommits.org",
# single-quotes are required for regexp
'(https?:\/\/github\.com\/)(.*\/)(generate)',
"https://localhost:3000",
"https://github.com/nuxt-contrib/vue3-ssr-starter/generate",
]