b1f2e21064
Add /.cache to .gitignore: this folder should be ignored and never pushed to git. Change-Id: Iaf0a23fbd2f1885a09adcc71ec5505f36f9aaf28
59 lines
491 B
Plaintext
59 lines
491 B
Plaintext
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Packages
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
parts
|
|
bin
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
MANIFEST
|
|
TAGS
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
.coverage
|
|
.tox
|
|
nosetests.xml
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
.idea
|
|
|
|
# Local example
|
|
example_local.py
|
|
|
|
# Local settings
|
|
local_settings.py
|
|
|
|
# Documentation
|
|
doc/_build/
|
|
|
|
# Logs
|
|
/logs
|
|
sys_test.log
|
|
|
|
# Certs
|
|
/ca.crt
|
|
/ca.pem
|
|
|
|
# Cache
|
|
/.cache
|