.gitignore 527 B

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