-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlychee.toml
More file actions
36 lines (26 loc) · 791 Bytes
/
lychee.toml
File metadata and controls
36 lines (26 loc) · 791 Bytes
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
# Lychee link checker configuration
# Exclude these patterns from checking
exclude = [
# Local development URLs
"^http://localhost",
"^https://localhost",
# Anchor links (internal page references)
"^#",
# VitePress internal routing (absolute paths in frontmatter)
"^/guide/",
"^/spec/",
]
# HTTP request timeout in seconds
timeout = 20
# Maximum number of retries
max_retries = 3
# Retry on 429 (Too Many Requests)
retry_wait_time = 2
# Accept these status codes as valid
accept = [200, 201, 204, 206, 301, 302, 307, 308]
# User agent
user_agent = "Mozilla/5.0 (compatible; lychee/0.21.0)"
# Maximum number of concurrent requests
max_concurrency = 8
# Include verbosity in output
# Removed verbose option - use --verbose flag in CLI instead