microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fix/1124-exclude-python-env-dirs-from-skill-validation

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

scripts/tests/Fixtures/Linting/link-check-config.json

25lines · modecode

1{
2 "ignorePatterns": [
3 {
4 "pattern": "^https://example\\.com"
5 }
6 ],
7 "replacementPatterns": [
8 {
9 "pattern": "^/docs",
10 "replacement": "{{BASEURL}}/docs"
11 }
12 ],
13 "httpHeaders": [
14 {
15 "urls": ["https://github.com"],
16 "headers": {
17 "Accept": "text/html"
18 }
19 }
20 ],
21 "timeout": "10s",
22 "retryOn429": true,
23 "retryCount": 2,
24 "aliveStatusCodes": [200, 203]
25}
26