# =============================================================================
# OS
# =============================================================================
.DS_Store
Thumbs.db
Desktop.ini

# =============================================================================
# IDE / Editor
# =============================================================================
.vscode/
.idea/
*.swp
*.swo
*~

# =============================================================================
# Claude Code
# =============================================================================
.claude/

# =============================================================================
# Python
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
dist/
build/
.eggs/
*.whl

# Virtual environments
.venv/
venv/

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.hypothesis/

# Type checking / Linting
.mypy_cache/
.dmypy.json
.ruff_cache/
.pytype/

# =============================================================================
# JavaScript / Node
# =============================================================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# =============================================================================
# Next.js (site/)
# =============================================================================
.next/
out/
next-env.d.ts

# =============================================================================
# Environment variables
# =============================================================================
.env
.env.local
.env.*.local

# =============================================================================
# Bandito-specific
# =============================================================================
bandito_traces/

# =============================================================================
# Database
# =============================================================================
*.db
*.sqlite
*.sqlite3

# =============================================================================
# Docker
# =============================================================================
docker-compose.override.yml
