Files
vibe-coding-cn/.lychee.toml
T

39 lines
1.4 KiB
TOML
Raw Normal View History

2026-05-04 04:45:05 +08:00
# Lychee link checker configuration for GitHub Actions.
#
# The repository checks first-party Markdown links with scripts/check-local-links.py.
# Lychee is reserved for public external links and first-party Markdown that should
# be visible to readers. Generated tools, external snapshots and login-only pages
# are excluded here instead of being repeated in workflow YAML.
2026-06-02 04:48:45 +08:00
timeout = 20
max_retries = 3
retry_wait_time = 2
max_concurrency = 32
2026-05-04 04:45:05 +08:00
exclude_path = [
'^\.history(/|$)',
'^\.github/wiki(/|$)',
'^node_modules(/|$)',
'^docs/references/sources(/|$)',
# This architecture blueprint contains many official external references
# whose CDNs can timeout from GitHub-hosted runners. Internal links and
# executable artifacts remain covered by scripts/check-local-links.py.
'^docs/references/modern-enterprise-architecture-template\.md$',
2026-05-04 04:45:05 +08:00
'^tools/external(/|$)',
'^tools/chat-vault(/|$)',
'^tools/prompts-library(/|$)',
'^skills/claude-official-skills(/|$)',
'^skills/auto-tmux/assets/(oh-my-tmux|tmux-src)(/|$)',
2026-05-04 04:45:05 +08:00
'^skills/auto-skill/scripts/(Skill_Seekers-development|skill-seekers-src|skill-seekers-configs)(/|$)',
]
exclude = [
'^https://chatgpt\.com.*',
'^https://claude\.ai.*',
'^https://app\.augmentcode\.com.*',
'^https://platform\.openai\.com.*',
'^https://user-images\.githubusercontent\.com.*',
'^https://notebooklm\.google\.com.*',
2026-05-04 05:03:48 +08:00
'^https://www\.contributor-covenant\.org.*',
2026-05-04 04:45:05 +08:00
]