# ============================================================================
# Claude Code Ignore - Performance Optimization
# ============================================================================
# Exclude large directories and files that Claude doesn't need to read
# This significantly improves performance and context relevance

# Python Virtual Environment (LARGEST - 180MB)
.venv/
venv/
env/
ENV/

# Python Cache & Build Artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Test & Coverage Artifacts
.pytest_cache/
.hypothesis/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
*.cover
*.py.cover
cover/

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

# Version Control
.git/
.gitignore

# Documentation Build
docs/_build/
site/

# Dependency Lock Files (large)
uv.lock
poetry.lock
Pipfile.lock

# Type Checking Cache
.mypy_cache/
.dmypy.json
dmypy.json
.pytype/
.ruff_cache/

# DICOM Test Files (may be large)
*.dcm
*.dicom
*.DCM
*.DICOM
samples/*.dcm
test_data/*.dcm
fixtures/*.dcm

# Logs & Temporary Files
*.log
*.tmp
*.bak
*.backup
*.old
*.orig

# OS Files
.DS_Store
Thumbs.db
desktop.ini

# Security & Credentials
*.key
*.pem
.env
.env.*
secrets.*
credentials.*
