From 8ea531ffcc42a2df9fc3e730a650557c1f1fbb90 Mon Sep 17 00:00:00 2001 From: jafreli Date: Wed, 16 Apr 2025 08:37:05 +0200 Subject: [PATCH] init --- .gitignore | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58786a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# 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/ \ No newline at end of file