diff --git a/.gitignore b/.gitignore index be0fe38..988798d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,42 +1,82 @@ -# Python +# ─── Python ─────────────────────────────────────────────── __pycache__/ *.py[cod] *$py.class *.so .Python +*.egg-info/ +*.egg +.venv*/ +venv/ +ENV/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ +lib/ lib64/ parts/ sdist/ var/ wheels/ -*.egg-info/ +*.whl .installed.cfg -*.egg -.venv/ -venv/ -ENV/ +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.coverage +coverage/ +htmlcov/ -# Data -data/ +# ─── Dart / Flutter ────────────────────────────────────── +.dart_tool/ +.pub/ +.builders/ +build/ +*.freezed.dart +*.g.dart +.pub-preload-cache/ +*.js_ +*.js.deps +*.js.map + +# ─── Data / Environment ────────────────────────────────── .env +.env.local +.env.production +*.db +data/ +*.log +logs/ -# IDE +# ─── IDE / Editor ──────────────────────────────────────── .idea/ .vscode/ *.swp *.swo +*~ +.vs/ +*.suo +*.user +*.userosscache +*.sln.docstates -# OS +# ─── OS ────────────────────────────────────────────────── .DS_Store Thumbs.db +Desktop.ini +ehthumbs.db -# Terraform +# ─── Terraform ─────────────────────────────────────────── .terraform/ -terraform/terraform.tfstate -terraform/terraform.tfstate.backup +*.tfstate +*.tfstate.backup +*.tfvars + +# ─── Build Artifacts ───────────────────────────────────── +*.tar.gz +*.zip +*.dmg +*.pkg