-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.lychee.toml
More file actions
37 lines (28 loc) · 945 Bytes
/
.lychee.toml
File metadata and controls
37 lines (28 loc) · 945 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
# Lychee link checker configuration
# Focused on catching broken local/relative links between docs.
# Install: brew install lychee
############################# Runtime #############################
# Only check local files — skip external URLs for speed.
# CI can override with --no-offline for full external checks.
offline = true
# Resolve bare links like [Guide](docs/GUIDE) → docs/GUIDE.md
fallback_extensions = ["md", "html"]
# Check #heading fragment anchors within markdown files
include_fragments = true
# No interactive progress bar (clean output in hooks/CI)
no_progress = true
############################# Exclusions ##########################
# Paths to skip entirely
exclude_path = [
"node_modules",
"examples",
"ROADMAP.md",
"CHANGELOG.md",
]
# URL patterns to ignore (even in offline mode, lychee parses these)
exclude = [
"^https?://",
"^mailto:",
]
# Only check markdown files
extensions = ["md"]