-
Notifications
You must be signed in to change notification settings - Fork 0
Fix link checker CI by excluding Fumadocs framework patterns #359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,7 +52,11 @@ exclude = [ | |
| "https://x.com*", | ||
|
|
||
| # Email links | ||
| "mailto:*" | ||
| "mailto:*", | ||
|
|
||
| # Fumadocs relative links (handled by framework at runtime) | ||
| # These are links like ./agent that resolve to .mdx files | ||
| "file://**/content/docs/**" | ||
|
Comment on lines
+57
to
+59
|
||
| ] | ||
|
|
||
| # Cache results to speed up subsequent runs | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--exclude-path '**/meta.json'/--exclude-path '**/meta.cn.json'appear redundant with the current invocation because the inputs being scanned are onlycontent/**/*.md,content/**/*.mdx, andREADME.md(so nometa*.jsonfiles are included). If the intent is to prevent lychee from parsing those JSON files, either remove these flags for clarity or broaden the input globs to include the JSON files and keep the excludes.