zulip/.gitignore

60 lines
1.3 KiB
Plaintext
Raw Normal View History

# Quick format and style primer:
#
# * If a pattern is meant only for a specific location, it should have a
# leading slash, like `/staticfiles.json`.
# * In principle any non-trailing slash (like `zproject/dev-secrets.conf`)
# will do, but this makes a confusing pattern. Adding a leading slash
# is clearer.
#
# * Patterns like `.vscode/` without slashes, or with only a trailing slash,
# match in any subdirectory.
#
# * Subdirectories with several internal things to ignore get their own
# `.gitignore` files.
#
# See `git help ignore` for details on the format.
## Config files for the dev environment
/zproject/dev-secrets.conf
/tools/conf.ini
/tools/custom_provision
## Byproducts of setting up and using the dev environment
*.pyc
/queue_error
.vagrant
/var
# Static build
*.mo
npm-debug.log
/node_modules
/prod-static
/staticfiles.json
/webpack-stats-production.json
# Test / analysis tools
.coverage
coverage/
api/bots/john/assets/var/database.db
## Files left by various editors and local environments
# (Ideally these should be in everyone's respective personal gitignore files.)
*~
*.sw[po]
2016-06-23 02:28:48 +02:00
.idea
.kdev4
zulip.kdev4
.kateproject.d/
.kateproject
*.kate-swp
*.sublime-project
*.sublime-workspace
.vscode/
*.DS_Store
## Miscellaneous
# (Ideally this section is empty.)