tldr/.gitignore

34 lines
571 B
Plaintext
Raw Permalink Normal View History

2020-12-04 19:22:15 +03:00
# VS Code
.vscode/
# Jetbrains IDE
.idea/
# macOS filesystem custom folder attributes
2016-01-15 23:48:13 +03:00
.DS_Store
2015-06-23 17:39:10 +03:00
2016-06-24 15:54:32 +03:00
# Bundler-specific files
2015-06-23 17:39:10 +03:00
.gem
2015-12-23 16:52:44 +03:00
.bundle
2016-01-13 16:10:26 +03:00
2020-04-19 17:13:04 +03:00
# npm-specific files
2016-01-13 16:10:26 +03:00
node_modules
npm-debug.log
2016-06-24 12:39:44 +03:00
2016-06-24 15:54:32 +03:00
# We used to have an index file in the repository,
# but it's been superseded by a static asset
# hosted at https://tldr-pages.github.io/assets/index.json
2016-06-24 12:39:44 +03:00
pages/index.json
index.json
2019-12-17 23:25:52 +03:00
# Generated PDF pages
scripts/pdf/*.html
scripts/pdf/tldr-pages.pdf
# Python venv for testing the PDF script
# Create it with: python3 -m venv scripts/pdf/venv/
venv
# Generated pycache
__pycache__