.gitignore 571 B

123456789101112131415161718192021222324252627282930313233
  1. # VS Code
  2. .vscode/
  3. # Jetbrains IDE
  4. .idea/
  5. # macOS filesystem custom folder attributes
  6. .DS_Store
  7. # Bundler-specific files
  8. .gem
  9. .bundle
  10. # npm-specific files
  11. node_modules
  12. npm-debug.log
  13. # We used to have an index file in the repository,
  14. # but it's been superseded by a static asset
  15. # hosted at https://tldr-pages.github.io/assets/index.json
  16. pages/index.json
  17. index.json
  18. # Generated PDF pages
  19. scripts/pdf/*.html
  20. scripts/pdf/tldr-pages.pdf
  21. # Python venv for testing the PDF script
  22. # Create it with: python3 -m venv scripts/pdf/venv/
  23. venv
  24. # Generated pycache
  25. __pycache__