2020-11-10 23:28:44 +03:00
|
|
|
// Linkinator treats the following as regex.
|
2020-09-27 15:10:11 +03:00
|
|
|
module.exports = [
|
2020-11-10 23:28:44 +03:00
|
|
|
// Skip GitHub search links.
|
2020-11-19 19:34:41 +03:00
|
|
|
'https://github.com/search\\?',
|
|
|
|
'https://github.com/github/gitignore/search\\?',
|
2020-09-27 15:10:11 +03:00
|
|
|
|
2020-11-10 23:28:44 +03:00
|
|
|
// These links require auth.
|
|
|
|
'https://github.com/settings/profile',
|
|
|
|
'https://github.com/github/docs/edit',
|
2020-09-27 15:10:11 +03:00
|
|
|
'https://github.com/github/insights-releases/releases/latest',
|
2021-05-04 23:46:40 +03:00
|
|
|
'https://classroom.github.com/videos',
|
2020-09-27 15:10:11 +03:00
|
|
|
|
2020-11-10 23:28:44 +03:00
|
|
|
// Oneoff links that link checkers think are broken but are not.
|
|
|
|
'https://haveibeenpwned.com/',
|
2021-01-26 21:21:06 +03:00
|
|
|
'https://www.ilo.org/dyn/normlex/en/f\\?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029',
|
2021-01-29 00:44:54 +03:00
|
|
|
'https://www.linkedin.com/company/github',
|
2021-04-05 19:10:31 +03:00
|
|
|
'https://www.facebook.com/',
|
2021-05-04 23:46:40 +03:00
|
|
|
'https://ko-fi.com/',
|
|
|
|
'https://en.liberapay.com/',
|
2021-06-02 19:05:02 +03:00
|
|
|
'https://nbviewer.jupyter.org/github/bokeh/bokeh-notebooks/blob/main/tutorial/06%20-%20Linking%20and%20Interactions.ipynb',
|
|
|
|
'https://www.vmware.com/products/esxi-and-esx.html'
|
2020-09-27 15:10:11 +03:00
|
|
|
]
|