.lycheeignore 757 B

123456789101112131415161718192021222324252627282930
  1. # Don't read Godot's own URL schemes as web URLs.
  2. user:\/\/.*
  3. res:\/\/.*
  4. uid:\/\/.*
  5. # Don't read WebSockets or TCP URLs as web URLs.
  6. ws(s?):\/\/.*
  7. tcp:\/\/.*
  8. # Security checks prevent checking the URLs of these websites automatically,
  9. # typically returning 403 errors.
  10. .*asecuritysite\.com.*
  11. .*intel\.com.*
  12. .*reddit\.com.*
  13. # Don't check URLs from these websites due to frequent rate limits (error 429) or timeouts.
  14. .*adobe\.com.*
  15. .*gamedevartisan\.com.*
  16. .*github\.com.*
  17. .*gnu\.org.*
  18. .*loopit\.dk.*
  19. .*meta\.com.*
  20. .*sourceforge\.io.*
  21. # Not a valid URL with the GET method, which lychee always sends.
  22. # Mentioned in the class reference.
  23. .*httpbin\.org\/post
  24. # Class reference mentions `example.com/index.php` in an example, which is 404.
  25. .*example\.com.*