1
0
mirror of synced 2025-12-21 19:06:49 -05:00
Files
docs/lib/excluded-links.js
jmarlena 691155bd24 Tidy up broken links (#19142)
* Add links to excluded links

* Apply suggestions from code review

Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>

* Sneaky space 

Co-authored-by: jmarlena <>
Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
2021-05-04 13:46:40 -07:00

22 lines
850 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',
'https://classroom.github.com/videos',
// 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/',
'https://en.liberapay.com/',
'https://nbviewer.jupyter.org/github/bokeh/bokeh-notebooks/blob/main/tutorial/06%20-%20Linking%20and%20Interactions.ipynb'
]