-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.lycheerc.toml
More file actions
43 lines (33 loc) · 928 Bytes
/
.lycheerc.toml
File metadata and controls
43 lines (33 loc) · 928 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
37
38
39
40
41
42
43
# Lychee configuration for URL validation
# This file configures the lychee link checker for CI
# Timeout for requests (in seconds)
timeout = 30
# Maximum number of concurrent requests
max_concurrency = 8
# HTTP status codes to accept as valid
accept = [200, 429, 403, 999]
# User agent to use for requests
user_agent = "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0"
# Exclude patterns (regex)
exclude = [
# Discord invites can be temporary/private
"discord.com/channels/",
# Some social media links may be rate limited
"instagram.com/",
"tiktok.com/",
# Local development URLs
"localhost",
"127.0.0.1",
# Email links
"mailto:",
]
# Check local files
include_local = true
# Check external links
check_external = true
# Verbose output
verbose = false
# Don't follow redirects beyond this limit
max_redirects = 5
# Cache file for performance
cache = true