python_boilerplate/.gitignore
2026-02-01 22:30:48 +00:00

44 lines
566 B
Plaintext

# --- Python (Bytecode y cache) ---
__pycache__/
*.py[cod]
*$py.class
# --- 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/
*.sw
*.swo
# --- Sistema Operativo ---
.DS_Store
Thumbs.db
# --- Logs ---
*.log