# This project .gitignore file
# lists content that does NOT need to be tracked for project history.

# ----------------------------------------
# VS Code (special case)
# ----------------------------------------
# Ignore all VS Code folder content by default
.vscode/*

# KEEP THESE FILES in a starter template
# Optional: Remove them after personalizing a project
!.vscode/extensions.json
!.vscode/settings.json

# ----------------------------------------
# macOS and Windows system files
# ----------------------------------------
.DS_Store
.AppleDouble
.LSOverride
Icon\r
._*
.Spotlight-V100/
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# ----------------------------------------
# Editors / IDEs
# ----------------------------------------
.idea/
*.code-workspace

# ----------------------------------------
# Environment variables and secrets
# ----------------------------------------
.env
.env.*
*.env

# ----------------------------------------
# Python: bytecode, build artifacts
# ----------------------------------------
.venv/
venv/
__pycache__/
*.pyc
*.pyo
*.pyd

# Packaging / distribution
build/
dist/
.eggs/
*.egg-info/
*.egg
*.whl

# ----------------------------------------
# Testing / coverage / linters (keep logs tracked)
# ----------------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.ruff_cache/

# ----------------------------------------
# Jupyter
# ----------------------------------------
.ipynb_checkpoints

# ----------------------------------------
# Documentation (MkDocs) — build output
# ----------------------------------------
site/

# ----------------------------------------
# Additional caches and temp files
# ----------------------------------------
.tox/
.mypy_cache/
.pytype/
.cache/
pip-wheel-metadata/
logs/
*.log

# ----------------------------------------
# Test data/raw files
# ----------------------------------------
data/raw/
