We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfda276 commit 018b131Copy full SHA for 018b131
1 file changed
lib/excluded-links.js
@@ -1,8 +1,8 @@
1
// Linkinator treats the following as regex.
2
module.exports = [
3
// Skip GitHub search links.
4
- 'https://github.com/search?.*',
5
- 'https://github.com/github/gitignore/search?',
+ 'https://github.com/search\\?',
+ 'https://github.com/github/gitignore/search\\?',
6
7
// These links require auth.
8
'https://github.com/settings/profile',
@@ -15,6 +15,6 @@ module.exports = [
15
16
// Oneoff links that link checkers think are broken but are not.
17
'https://haveibeenpwned.com/',
18
- 'https://www.ilo.org/dyn/normlex/en/f?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029',
+ 'https://www.ilo.org/dyn/normlex/en/f\\?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029',
19
'http://www.w3.org/wiki/LinkHeader/'
20
]
0 commit comments