-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.crossref-verifier.yaml
37 lines (31 loc) · 1.02 KB
/
.crossref-verifier.yaml
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
# Parameters of repository traversal.
traversal:
# Folders which we pretend do not exist.
ignored:
# Git files
- .git/
# Stack files
- .stack-work
- .stack-root
# Verifier repo itself, added in CI
- .crossref-verifier
# Verification parameters.
verification:
# On 'anchor not found' error, how much similar anchors should be displayed as hint.
# Number should be between 0 and 1, larger value means stricter filter.
anchorSimilarityThreshold: 0.5
# When checking external references, how long to wait on request before
# declaring "Response timeout".
externalRefCheckTimeout: 60s
# Files prefixes references in which should not be analyzed.
notScanned:
# Gitlab-specific files
- .gitlab/merge_request_templates/
# Glob patterns describing the files which do not physically exist in the repository
# but should be treated as existing nevertheless.
virtualFiles:
# Gitlab pages
- ../../issues
- ../../issues/*
- ../../merge_requests
- ../../merge_requests/*