From 07c3f7db1e048d4c9c97e99e0f3c8a30273341f2 Mon Sep 17 00:00:00 2001 From: unai Date: Sun, 1 Feb 2026 16:30:02 +0000 Subject: [PATCH] Add .gitignore file to exclude common Python artifacts and environment files --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/.gitignore b/.gitignore index e69de29..f2085ca 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,44 @@ +# --- Python (Bytecode y cache) --- +__pycache__/ +*.py[cod] +*$py.class +poetry.lock +# --- Distribución y Build --- +dist/ +build/ +*.egg-info/ +.eggs/ + +# --- Entornos Virtuales (Poetry suele crear .venv) --- +.venv/ +venv/ +env/ +ENV/ + +# --- Testing y Coverage --- +.coverage +.coverage.* +htmlcov/ +.pytest_cache/ +coverage.xml + +# --- Herramientas de Calidad (Ruff, Mypy) --- +.ruff_cache/ +.mypy_cache/ +.dmypy.json + +# --- Variables de Entorno (¡Seguridad!) --- +.env + +# --- IDEs y Editores --- +.vscode/ +.idea/ +*.swp +*.swo + +# --- Sistema Operativo --- +.DS_Store +Thumbs.db + +# --- Logs --- +*.log