# ---- Local-only files ----
progress.txt

# ---- Internal planning scratch (kept local, not published) ----
# Tracked project docs live in docs/ — only the local scratch subfolder is ignored.
docs/superpowers/

# ---- Secrets / local config (NEVER commit real DSNs or credentials) ----
connections.json
.env
.env.*

# ---- Python bytecode / caches ----
__pycache__/
*.py[cod]
*$py.class
*.so

# ---- Virtual environments ----
.venv/
venv/
env/
ENV/

# ---- Packaging / build artifacts ----
build/
dist/
*.egg
*.egg-info/
.eggs/
wheels/
*.mcpb

# ---- Tooling caches ----
.ruff_cache/
.pytest_cache/
.mypy_cache/
.coverage
.coverage.*
htmlcov/
.tox/

# ---- IDE / OS noise ----
.idea/
.vscode/
*.swp
.DS_Store
Thumbs.db
