8d8c8bd89f
1. Add make clean 2. Specify configuration file used by mypy 3. Add some directories to dockerignore Change-Id: I4f6b0d5ba894214bb0fcff21443f9808f56d595e
85 lines
846 B
Plaintext
85 lines
846 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
sql_app.db
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Flask stuff:
|
|
.webassets-cache
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# Environments
|
|
**/.env
|
|
**/.venv
|
|
**/env/
|
|
**/venv/
|
|
**/ENV/
|
|
**/env.bak/
|
|
**/venv.bak/
|
|
|
|
# Development
|
|
.vscode/
|
|
/log/
|
|
tmp/
|
|
|
|
# MAC OS
|
|
.DS_Store
|
|
.idea
|
|
|
|
# Remove build context
|
|
**/.git
|
|
**/tmp
|
|
**/.mypy_cache
|
|
**/dist
|
|
**/node_modules
|
|
**/__pycache__
|