-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlychee.toml
More file actions
53 lines (48 loc) · 1.08 KB
/
lychee.toml
File metadata and controls
53 lines (48 loc) · 1.08 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ref: https://github.com/lycheeverse/lychee/blob/master/lychee.example.toml
accept = [
"100..=103",
"200..=299",
# GitHub API rate limit is unavoidable even using the cache
"429",
]
cache = true
cache_exclude_status = [
# GitHub API also returns 403 for rate limit
"403",
"429",
"500..=599",
]
exclude_path = [
".git",
"node_modules",
"worker/node_modules",
".lycheecache", # cspell:ignore lycheecache
# ignore autogenerated files
".gitignore",
"wsl/home/.config/git/.gitignore",
"bun.lock",
"worker/bun.lock",
# ignore binaries
"win/powertoys", # cspell:ignore powertoys
]
exclude = [
"https?://dot.risunosu.com",
# exclude ${} patterns
".*\\$(%7B.*%7D.*)?$",
# README.md
"https://x.com/",
# win/winget.json
"https://cdn.winget.microsoft.com/cache",
# .vscode/
# requests are forbidden
"https://code.visualstudio.com",
# wsl/install.sh
# can't be accessed
"https://mise.jdx.dev/deb",
# worker/tasks/worker/deploy
# an example of a url with authentication
"https://.+@github.com//owner/repo",
# .github/workflows/test.yml
"http://worker",
]
exclude_all_private = true