Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

excluded-links.js 652 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  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\\?',
  6. // These links require auth.
  7. 'https://github.com/settings/profile',
  8. 'https://github.com/github/docs/edit',
  9. 'https://github.com/github/insights-releases/releases/latest',
  10. // Oneoff links that link checkers think are broken but are not.
  11. 'https://haveibeenpwned.com/',
  12. 'https://www.ilo.org/dyn/normlex/en/f\\?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029',
  13. 'https://www.linkedin.com/company/github',
  14. 'https://www.facebook.com/',
  15. 'https://ko-fi.com/'
  16. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...