Skip to content

Commit c766236

Browse files
committed
add lychee config file
1 parent 407caeb commit c766236

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

lychee.toml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
###
2+
### Display
3+
###
4+
# Verbose program output
5+
verbose = false
6+
7+
# Show progress
8+
progress = false
9+
10+
11+
###
12+
### Runtime
13+
###
14+
# Number of threads to utilize.
15+
# Defaults to number of cores available to the system if omitted.
16+
#threads = 2
17+
18+
# Maximum number of allowed redirects
19+
max_redirects = 10
20+
21+
22+
###
23+
### Requests
24+
###
25+
# User agent to send with each request
26+
user_agent = "curl/7.71.1"
27+
28+
# Website timeout from connect to response finished
29+
timeout = 20
30+
31+
# Comma-separated list of accepted status codes for valid links.
32+
# Omit to accept all response types.
33+
#accept = "text/html"
34+
35+
# Proceed for server connections considered insecure (invalid TLS)
36+
insecure = false
37+
38+
# Only test links with the given scheme (e.g. https)
39+
# Omit to check links with any scheme
40+
#scheme = "https"
41+
42+
# Request method
43+
method = "get"
44+
45+
# Custom request headers
46+
headers = []
47+
48+
49+
###
50+
### Exclusions
51+
###
52+
# Exclude URLs from checking (supports regex)
53+
exclude = []
54+
55+
# Exclude URLs contained in a file from checking
56+
# If a file named `.lycheeignore` exists in the current working directory,
57+
# its contents will be excluded as well.
58+
exclude_file = ['.git', 'doc/slihelp_generator', 'doc/slidoc/index.html']
59+
60+
include = []
61+
62+
# Exclude all private IPs from checking
63+
# Equivalent to setting `exclude_private`, `exclude_link_local`, and `exclude_loopback` to true
64+
exclude_all_private = false
65+
66+
# Exclude private IP address ranges from checking
67+
exclude_private = false
68+
69+
# Exclude link-local IP address range from checking
70+
exclude_link_local = false
71+
72+
# Exclude loopback IP address range and localhost from checking
73+
exclude_loopback = false
74+
75+
# Exclude all mail addresses from checking
76+
exclude_mail = false

0 commit comments

Comments
 (0)