microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
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 | |