-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy path.markdown-link-check.yaml
More file actions
54 lines (53 loc) · 2.3 KB
/
.markdown-link-check.yaml
File metadata and controls
54 lines (53 loc) · 2.3 KB
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
# Refer to https://github.com/tcort/markdown-link-check?tab=readme-ov-file#config-file-format for details
# projectBaseUrl: ${workspaceFolder}
ignorePatterns:
# ignore specific links in the change log
- pattern: "https://docs.anchore.com/current/docs/overview/requirements/"
# ignore pdf links that are known to be slow or unreliable
- pattern: "https://dodcio.defense.gov/Portals/0/Documents/Library/DoD%20Enterprise%20DevSecOps%20Reference%20Design%20-%20CNCF%20Kubernetes%20w-DD1910_cleared_20211022.pdf"
# ignore medium links that are known to be unreliable
- pattern: "https://medium.com/@bramblexu/install-gnu-sed-on-mac-os-and-set-it-as-default-7c17ef1b8f64"
- pattern: "https://medium.com/the-telegraph-engineering/binding-gcp-accounts-to-gke-service-accounts-with-terraform-dfca4e81d2a0"
# ignore sdelements links that are known to be unreliable
- pattern: "https://www.securitycompass.com/sdelements/"
# ignore well-known big-bang issue links
- pattern: "https://repo1.dso.mil/big-bang/bigbang/-/issues/1204"
# ignore well-known anchor references
- pattern: "#package-configuration"
- pattern: "#Troubleshooting"
- pattern: "#extending-cypress-tests"
# ignore cluster.local domains
- pattern: "(.*\\.)?cluster\\.local.*"
# ignore private confluence links
- pattern: "https://confluence.il2.dso.mil/*"
- pattern: "https://confluence.il4.dso.mil/*"
# ignore links that are known to be unreliable due to rate limiting (will be fixed by https://repo1.dso.mil/big-bang/pipeline-templates/pipeline-templates/-/issues/806)
- pattern: "https://www.opentext.com/products/cybersecurity-cloud"
# Ignore retired promtail links
- pattern: "https://grafana.com/docs/loki/latest/send-data/promtail/"
# Ignore mailto links
- pattern: "^mailto:"
# replacementPatterns:
# - pattern: ^.attachments
# replacement: file://some/conventional/folder/.attachments
# - pattern: ^/
# replacement: '{{BASEURL}}/'
# - pattern: '%20'
# replacement: '-'
# global: true
# - pattern: images/(?<filename>.*)
# replacement: assets/$<filename>
# httpHeaders:
# - urls:
# - https://example.com
# headers:
# Authorization: Basic Zm9vOmJhcg==
# Foo: Bar
# timeout: 20s
# retryOn429: true
# retryCount: 2
# fallbackRetryDelay: 60s
# aliveStatusCodes:
# - 200
# - 206
# - 429