-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.markdown-link-check.json
47 lines (47 loc) · 1.2 KB
/
.markdown-link-check.json
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
{
"ignorePatterns": [
{
"___comment___": "linux.die *always* returns 403",
"pattern": "^https?://linux.die.net"
},
{
"___comment___": "cloudflare *always* returns 403, probably because of their DDoS protection",
"pattern": "^https?://(:?www\\.)?cloudflare.com"
},
{
"___comment___": "ignoring SSHd ciphers",
"pattern": "^mailto:.+@(openssh.com|libssh.org)$"
},
{
"___comment___": "ignoring URLs with %23 as it leads to false positives. see https://github.com/tcort/markdown-link-check/issues/264",
"pattern": ".+?\\%23.+?"
},
{
"___comment___": "scorecard.dev *always* returns 0",
"pattern": "^https://scorecard.dev"
},
{
"___comment___": "ignore mails",
"pattern": "^mailto:[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$"
}
],
"timeout": "120s",
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [
200,
206
],
"httpHeaders": [
{
"urls": [
""
],
"headers": {
"Accept-Encoding": "zstd;q=1, br;q=0.9, gzip;q=0.8, deflate;q=0.7, compress;q=0.6, *;q=0.1, identity;q=0",
"Accept": "*/*"
}
}
]
}