1+ ---
2+ # DocOps Lab HTML-Proofer Base Configuration
3+ # This provides sensible defaults for DocOps Lab projects
4+ check_directory : build/docs/_site
5+
6+ # URL checking options
7+ check_external_hash : false # Skip checking external URL fragments (can be slow)
8+ check_img_http : false # Allow HTTP images for now
9+ enforce_https : false # Don't enforce HTTPS for all links
10+
11+ # URLs to ignore (patterns and strings)
12+ ignore_urls :
13+ - /localhost/ # Skip local development URLs
14+ - /127\.0\.0\.1/ # Skip local IPs
15+ - /example\.com/ # Skip example URLs
16+ - /foo\.bar/ # Skip placeholder URLs
17+ - /fonts.googleapis.com/ # Skip Google Fonts
18+ - /fonts.gstatic.com/ # Skip Google Fonts static
19+ # GitHub Pages baseurl patterns (validated on live server at localhost:4100)
20+ - /^\/docs\// # Internal links with /docs/ baseurl prefix
21+ - /github\.com.*\/blob\// # GitHub source links (rate limiting)
22+ - /medium\.com/ # Medium links (403 errors)
23+
24+ # Files to ignore (patterns)
25+ ignore_files :
26+ - slides/ # Skip slides directories
27+
28+ # Other options
29+ # check_favicon: false # Don't require favicon
30+ # check_html: true # Check HTML structure
31+ # check_opengraph: false # Skip OpenGraph validation
32+ # disable_external: false # Check external links (can be disabled for speed)
33+ check_favicon : false # Don't require favicon
34+ check_html : true # Check HTML structure
35+ check_opengraph : false # Skip OpenGraph validation
36+ disable_external : false # Check external links
37+ check_directory : build/docs/_site
38+ assume_extension : true
39+ root_dir : build/docs/_site
40+ url : " http://localhost:4100/docs/"
0 commit comments