49 lines
516 B
Plaintext
49 lines
516 B
Plaintext
# Python-spezifische Dateien und Verzeichnisse
|
|
.pyc
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
venv/
|
|
env/
|
|
.venv/
|
|
local_settings.py
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Test-Dateien und -Verzeichnisse
|
|
tests/
|
|
__pycache__/tests/
|
|
*.test.py
|
|
*.spec.py
|
|
.pytest_cache/
|
|
.coverage
|
|
*.coverage
|
|
.tox/
|
|
.mypy_cache/
|
|
|
|
# Dokumentation
|
|
docs/
|
|
_build/
|
|
.DS_Store
|
|
|
|
# Statische Analyse und Linting
|
|
.pylintrc
|
|
.flake8rc
|
|
.mypy.ini
|
|
.codespellrc
|
|
|
|
# Sonstige
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.DS_Store
|
|
|
|
# Bilder-Ordner (und alles darin)
|
|
bilder/
|
|
fehler/ |