diff --git a/.gitignore b/.gitignore index 485dee6..4d8e73f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,90 @@ -.idea +# ========================= +# Python bytecode & caches +# ========================= +__pycache__/ +*.py[cod] +*$py.class + +# ========================= +# C extensions +# ========================= +*.so + +# ========================= +# Distribution / packaging +# ========================= +.Python +build/ +dist/ +*.egg-info/ +.eggs/ +pip-wheel-metadata/ +wheels/ +MANIFEST + +# ========================= +# Virtual environments +# ========================= +.venv/ +venv/ +ENV/ +env/ + +# ========================= +# Test / coverage outputs +# ========================= +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.coverage.xml +test-results/ + +# ========================= +# Lint / type checking +# ========================= +.mypy_cache/ +.dmypy.json +.pyre/ + +# ========================= +# Docs build artifacts +# ========================= +site/ +docs/_site/ +docs/build/ + +# ========================= +# MkDocs / Sphinx output +# ========================= +mkdocs.yml +site/ +.build/ +_doctrees/ + +# ========================= +# IDEs & editors +# ========================= +.vscode/ +.idea/ +*.swp +*.swo +*.bak +*.tmp + +# ========================= +# OS-specific +# ========================= +.DS_Store +Thumbs.db + +# ========================= +# Logs +# ========================= +*.log + +# ========================= +# Local config overrides +# ========================= +.env +.env.*