-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.lychee.toml
More file actions
30 lines (26 loc) · 869 Bytes
/
.lychee.toml
File metadata and controls
30 lines (26 loc) · 869 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
# Lychee link checker configuration
# https://lychee.cli.rs/usage/config/
# Exclude patterns (regex)
exclude = [
"^http://127\\.",
"^http://localhost",
"^https://deploy\\.seatable-demo\\.de",
"^ldap://",
"^file:///",
# Example/placeholder URLs
"^https://login\\.microsoftonline\\.com/xxx",
# XML namespace URIs (not real URLs)
"^http://schemas\\.xmlsoap\\.org",
# External sites with unstable availability
"^https://ldapwiki\\.com",
# API reference anchors that return 404 for direct link checks
"^https://api\\.seatable\\.com/reference/",
# Links with .md extension (valid in MkDocs, 404 on live site checked separately)
"admin\\.seatable\\.com.*\\.md$",
]
# Accept these status codes as valid
accept = [200, 204, 301, 302, 403, 429]
# Skip fragment checking
include_fragments = false
# Maximum number of redirects
max_redirects = 10