Skip to content

Commit 36726b1

Browse files
authored
Infrastructure: Temporarily ignore failing check during link checker while #2907 is being investigated (#2925)
1 parent f2ebb49 commit 36726b1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.link-checker.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ module.exports = {
2525
ignoreHashesOnExternalPagesMatchingRegex: [
2626
// Some hash links are resolved with JS and are therefore difficult to check algorithmically
2727
/^https:\/\/html\.spec\.whatwg\.org\/multipage\//,
28+
'https://github.com/w3c/aria-practices#code-conformance', // TODO: Remove when #2907 is resolved
2829
],
2930
};

scripts/link-checker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ async function checkLinks() {
302302
) {
303303
consoleError(
304304
`Found broken external link on ${htmlPath}:${lineNumber}:${columnNumber}, ` +
305-
'hash not found on page'
305+
`hash "#${hash}" not found on page`
306306
);
307307
}
308308
}

0 commit comments

Comments
 (0)