-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlychee.toml
More file actions
53 lines (45 loc) · 1.95 KB
/
Copy pathlychee.toml
File metadata and controls
53 lines (45 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# lychee link checker configuration
# https://lychee.cli.rs/
# Verbosity level: 'error', 'warn', 'info', 'debug', 'trace'
# Setting to 'error' will hide [WARN] messages
verbose = "error"
# Exclude patterns
exclude = [
"^/",
"^file://",
# Legacy docs that reference non-existent GitHub paths
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/legacy/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/tests/README($|#)",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/features/.*/README\\.md$",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/features/.*/file\\.include/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/assets/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/reference/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/how-to/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/tutorials/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/contributing/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/explanation/",
"^https://github\\.com/gardenlinux/gardenlinux/blob/main/mailto:",
"^https://github\\.com/gardenlinux/builder/blob/main/reference/features$",
"^https://github\\.com/gardenlinux/gardenlinux/tree/main/tests/platformSetup/",
"^https://github\\.com/gardenlinux/python-gardenlinux-lib/blob/main/_static/",
"^https://github\\.com/gardenlinux/docs/blob/main/src/README\\.md$",
"^https://github\\.com/gardenlinux/docs/blob/main/tests/README\\.md$",
"^http://packages\\.gardenlinux\\.io/gardenlinux$",
]
# Accept these status codes as valid
accept = [200, 204, 301, 302, 429]
# Timeout per request (seconds)
timeout = 30
# Maximum number of concurrent requests
max_concurrency = 16
# Maximum number of retries per request
max_retries = 3
# Exclude private/local IPs
exclude_private = true
exclude_loopback = true
# Skip these file patterns
exclude_path = [
"node_modules",
"docs/.vitepress/dist",
"docs/.vitepress/cache",
]