-
Notifications
You must be signed in to change notification settings - Fork 0
/
lychee.toml
62 lines (45 loc) · 1.8 KB
/
lychee.toml
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
54
55
56
57
58
59
60
61
62
############################# Display #############################
# Verbose program output
# Accepts log level: "error", "warn", "info", "debug", "trace"
verbose = "info"
# Don't show interactive progress bar while checking links.
no_progress = true
# Path to summary output file.
output = "/input/lychee/report.md"
############################# Cache ###############################
# Enable link caching. This can be helpful to avoid checking the same links on
# multiple runs.
cache = true
# Discard all cached requests older than this duration.
max_cache_age = "2d"
############################# Exclusions ##########################
# Skip missing input files (default is to error if they don't exist).
skip_missing = false
# Check links inside `<code>` and `<pre>` blocks as well as Markdown code
# blocks.
include_verbatim = false
# Ignore case of paths when matching glob patterns.
glob_ignore_case = false
# Exclude URLs and mail addresses from checking (supports regex).
exclude = [
'^https://fonts\.googleapis\.com/',
'^https://fonts\.gstatic\.com/',
'^https://www\.linkedin\.com',
'^https://www\.instagram\.com', # fails with 429 too many requests :shrug:
]
# Exclude these filesystem paths from getting checked.
exclude_path = []
# URLs to check (supports regex). Has preference over all excludes.
include = ['gist\.github\.com.*']
# Exclude all private IPs from checking.
# Equivalent to setting `exclude_private`, `exclude_link_local`, and
# `exclude_loopback` to true.
exclude_all_private = false
# Exclude private IP address ranges from checking.
exclude_private = true
# Exclude link-local IP address range from checking.
exclude_link_local = true
# Exclude loopback IP address range and localhost from checking.
exclude_loopback = true
# Check mail addresses
include_mail = false