19 lines
652 B
JavaScript
19 lines
652 B
JavaScript
// Linkinator treats the following as regex.
|
|
module.exports = [
|
|
// Skip GitHub search links.
|
|
'https://github.com/search\\?',
|
|
'https://github.com/github/gitignore/search\\?',
|
|
|
|
// These links require auth.
|
|
'https://github.com/settings/profile',
|
|
'https://github.com/github/docs/edit',
|
|
'https://github.com/github/insights-releases/releases/latest',
|
|
|
|
// Oneoff links that link checkers think are broken but are not.
|
|
'https://haveibeenpwned.com/',
|
|
'https://www.ilo.org/dyn/normlex/en/f\\?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029',
|
|
'https://www.linkedin.com/company/github',
|
|
'https://www.facebook.com/',
|
|
'https://ko-fi.com/'
|
|
]
|