File: lychee.toml

package info (click to toggle)
vim 2%3A9.2.0119-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 96,200 kB
  • sloc: ansic: 434,134; cpp: 6,445; makefile: 4,637; sh: 2,569; java: 2,488; xml: 2,099; python: 1,716; perl: 1,419; awk: 730; lisp: 501; cs: 458; objc: 369; sed: 35; csh: 9; haskell: 1
file content (47 lines) | stat: -rw-r--r-- 1,395 bytes parent folder | download | duplicates (3)
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
#############################  Runtime  #############################

# Reasonable concurrency to avoid rate-limiting small hosts.
max_concurrency = 14

# File extensions to scan
extensions = ["c", "h", "md", "html", "txt"]

#############################  Requests  ############################

# Accepted status codes
# - Include 429 (Too Many Requests) to avoid marking throttled links as dead.
accept = ["100..=103", "200..=299", "429"]

# Retry each request a few times on transient network errors
retries = 2
retry_wait_time = 2

# Timeout per request in seconds
timeout = 60

#############################  Exclusions  ##########################

exclude = [
  '^https?://sys/file$',
  '^file://.*',
  '^https?://(www\.)?badges\.debian\.net/.*$',
  '^https?://(www\.)?repology\.org/.*$',
  '^https?://scan\.coverity\.com/.*$',
  '^https?://(www\.)?img\.shields\.io/.*$',
  '^https?://(www\.)?fossies\.org/.*$',
  '^https?://(www\.)?adobe\.com.*$',
  '^https?://(www\.)?google\.com.*$',
  '^https?://(www\.)?forum\.vmssoftware\.com/.*$',
  '^http://vim\.sourceforge\.net/scripts/script\.php\?script_id=40$',
  '^https://is\.gd/.*$',
  '^https://wiki\.contextgarden\.net/Vim$',
  '^https://github\.com/you/foobar\.git$',
  '^https?://flatassembler\.net',
  '^https?://www\.fleiner\.com/vim/download.html',
]

# Lychee only reads UTF-8 files
exclude_path = [
  'src/po',
  'src/testdir',
]