|
74 | 74 | # Options for the linkcheck builder |
75 | 75 | # Ignore localhost |
76 | 76 | linkcheck_ignore = [ |
77 | | - r"http://localhost", |
| 77 | + # Ignore local and example URLs |
78 | 78 | r"http://0.0.0.0", |
79 | 79 | r"http://127.0.0.1", |
| 80 | + r"http://localhost", |
80 | 81 | r"http://yoursite", |
81 | | - r"https://www.linode.com", |
82 | | - r"https://vhs-ehrenamtsportal.de", # SSLError(SSLCertVerificationError |
| 82 | + # Ignore file downloads |
| 83 | + r"^/_static/", |
| 84 | + # Ignore pages that require authentication |
83 | 85 | r"https://github.com/orgs/plone/teams/", # requires auth |
84 | 86 | r"https://github.com/plone/documentation/issues/new/choose", # requires auth |
85 | | - # Ignore specific anchors |
86 | | - r"https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors#Identifying_the_issue", |
87 | | - r"https://github.com/browserslist/browserslist#queries", |
88 | | - r"https://github.com/nodejs/release#release-schedule", |
89 | | - r"https://github.com/nvm-sh/nvm#install--update-script", |
90 | | - r"https://github.com/plone/cookiecutter-zope-instance#options", |
91 | | - r"https://github.com/plone/plone.app.contenttypes/blob/2.2.3/docs/README.rst#migration", |
92 | | - r"https://github.com/plone/plone.docker#for-basic-usage", |
93 | | - r"https://github.com/plone/plone.rest#cors", |
94 | | - r"https://github.com/plone/plone.volto/blob/6f5382c74f668935527e962490b81cb72bf3bc94/src/kitconcept/volto/upgrades.py#L6-L54", |
95 | 87 | r"https://github.com/plone/volto/issues/new/choose", # requires auth |
96 | | - r"https://github.com/tc39/proposals/blob/HEAD/finished-proposals.md#finished-proposals", |
| 88 | + # Ignore github.com pages with anchors |
| 89 | + r"https://github.com/.*#.*", |
| 90 | + # Ignore other specific anchors |
97 | 91 | r"https://coveralls.io/repos/github/plone/plone.restapi/badge.svg\?branch=master", # plone.restapi |
98 | | - r"https://github.com/plone/plone.restapi/blob/dde57b88e0f1b5f5e9f04e6a21865bc0dde55b1c/src/plone/restapi/services/content/add.py#L35-L61", # plone.restapi |
| 92 | + r"https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors#Identifying_the_issue", |
99 | 93 | r"https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-version-10-0", # volto |
100 | | - r"^/_static/", |
101 | 94 | ] |
102 | 95 | linkcheck_anchors = True |
103 | 96 | linkcheck_timeout = 5 |
|
0 commit comments