File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 2626 # Use configuration file for path remapping and settings
2727 args : >-
2828 --config lychee.toml
29+ --exclude-path '**/meta.json'
30+ --exclude-path '**/meta.cn.json'
2931 'content/**/*.md'
3032 'content/**/*.mdx'
3133 'README.md'
Original file line number Diff line number Diff line change @@ -17,3 +17,7 @@ https://x.com*
1717
1818# Common false positives
1919mailto:*
20+
21+ # Fumadocs metadata files (not actual links)
22+ **/meta.json
23+ **/meta.cn.json
Original file line number Diff line number Diff line change @@ -52,7 +52,11 @@ exclude = [
5252 " https://x.com*" ,
5353
5454 # Email links
55- " mailto:*"
55+ " mailto:*" ,
56+
57+ # Fumadocs relative links (handled by framework at runtime)
58+ # These are links like ./agent that resolve to .mdx files
59+ " file://**/content/docs/**"
5660]
5761
5862# Cache results to speed up subsequent runs
You can’t perform that action at this time.
0 commit comments