forked from wangruin/docs.zh-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lychee.toml
104 lines (71 loc) · 2.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
############################# Display #############################
# Verbose program output
# Accepts log level: "error", "warn", "info", "debug", "trace"
verbose = "info"
# Show progress
progress = false
# Path to summary output file.
# output = "report.md"
############################# Cache ###############################
# Enable link caching. This can be helpful to avoid checking the same links on
# multiple runs.
# If we start checking external links we should enable this, but at the
# moment we are checking links to Markdown files only with arg --offline
cache = false
# Discard all cached requests older than this duration.
# max_cache_age = "2d"
############################# Runtime #############################
# Number of threads to utilize.
# Defaults to number of cores available to the system if omitted.
# threads = 6
# Maximum number of allowed redirects [default: 10]
# max_redirects = 10
# Maximum number of concurrent network requests [default: 128]
max_concurrency = 30
############################# Requests ############################
# User agent to send with each request
user_agent = "curl/7.83.1"
# Website timeout from connect to response finished
timeout = 10
# Comma-separated list of accepted status codes for valid links.
# Omit to accept all response types.
#accept = "text/html"
# Proceed for server connections considered insecure (invalid TLS)
insecure = false
# Comma-separated list of accepted status codes for valid links.
accept = [200, 204, 301, 429]
# Only test links with the given schemes (e.g. https).
# Omit to check links with any scheme.
scheme = [ "https" ]
# When links are available using HTTPS, treat HTTP links as errors.
require_https = true
# Request method
method = "get"
# Custom request headers
headers = []
# Remap URI matching pattern to different URI.
# remap = [ "https://example.com http://example.invalid" ]
############################# Exclusions ##########################
# Exclude URLs from checking (supports regex)
exclude = [
]
# Exclude these filesystem paths from getting checked.
# We exclude StarRocks_intro as it generates the URLs
# via a component that takes the path without the `.md`
# extension, and lychee is looking for a valid path
# including extension.
exclude_path = ["docs/README.md", "docs/introduction/StarRocks_intro.md", "docs/assets/"]
include = []
# This prevents checking inside codeblocks
include_verbatim = false
# Exclude all private IPs from checking
# Equivalent to setting `exclude_private`, `exclude_link_local`, and `exclude_loopback` to true
exclude_all_private = true
# # Exclude private IP address ranges from checking
# exclude_private = false
# # Exclude link-local IP address range from checking
# exclude_link_local = false
# # Exclude loopback IP address range and localhost from checking
# exclude_loopback = false
# Exclude all mail addresses from checking
exclude_mail = true