From 7996ea641fe7fa5f3b44cb7d30a14c255878bdc6 Mon Sep 17 00:00:00 2001 From: "michaela.buzalkova" Date: Sun, 14 Dec 2025 11:07:42 +0100 Subject: [PATCH] lenovo --- .gitignore | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d29da5a --- /dev/null +++ b/.gitignore @@ -0,0 +1,60 @@ +# ====================== +# Python +# ====================== +__pycache__/ +*.py[cod] +*.pyo +*.pyd + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# ====================== +# PyCharm / IDE +# ====================== +.idea/ +*.iml + +# ====================== +# OS files +# ====================== +.DS_Store +Thumbs.db +desktop.ini + +# ====================== +# Logs +# ====================== +*.log + +# ====================== +# Test / coverage +# ====================== +.coverage +htmlcov/ +.pytest_cache/ + +# ====================== +# Build / dist +# ====================== +build/ +dist/ +*.egg-info/ + +# ====================== +# Jupyter +# ====================== +.ipynb_checkpoints/ + +# ====================== +# Local config / secrets +# ====================== +*.env +.env +.env.* +*.ini +*.cfg +*.conf