.lycheeignore 794 B

1234567891011121314151617181920212223242526272829303132
  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. .*inkscape.org.*
  14. .*computerhope.com*
  15. # Don't check URLs from these websites due to frequent rate limits (error 429) or timeouts.
  16. .*adobe\.com.*
  17. .*gamedevartisan\.com.*
  18. .*github\.com.*
  19. .*gnu\.org.*
  20. .*loopit\.dk.*
  21. .*meta\.com.*
  22. .*sourceforge\.io.*
  23. # Not a valid URL with the GET method, which lychee always sends.
  24. # Mentioned in the class reference.
  25. .*httpbin\.org\/post
  26. # Class reference mentions `example.com/index.php` in an example, which is 404.
  27. .*example\.com.*