forked from dbt-labs/docs.getdbt.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lychee.toml
54 lines (42 loc) · 1.06 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
###
### 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
###
### Cache
###
# Enable link caching. This can be helpful to avoid checking the same links on
# multiple runs.
cache = false
###
### Requests
###
# Website timeout from connect to response finished.
timeout = 30
# Comma-separated list of accepted status codes for valid links.
accept = [200, 403, 429]
# Base URL or website root directory to check relative URLs.
base = "https://docs.getdbt.com"
###
### Exclusions
###
# Exclude URLs from checking (supports regex)
exclude = [
'frontMatter.',
'https://badge.fury.io',
'https://img.shields.io',
'https://gitlab.com',
'https://dbtlabs.postman.co',
'https://mobile.twitter.com',
'https://twitter.com',
'https://www.twitter.com',
]
# Exclude all mail addresses from checking
exclude_mail = true
# Check links inside `<code>` and `<pre>` blocks as well as Markdown code
# blocks.
include_verbatim = false