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

# Virtual environment
.venv/
venv/

# Environment (secrets)
.env

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Test
.pytest_cache/
.coverage
htmlcov/

# Ruff
.ruff_cache/

# Mypy
.mypy_cache/

# The local EPICS test sandbox is kept OUTSIDE this repo (in a private workspace); never track it
# here. This blanket ignore also covers any leftover runtime/build artifacts on disk.
sandbox/

# Site-specific pre-commit PII/secret patterns (kept out of this public repo by design).
scripts/.pii_patterns.local

# Scratch trees of QA runs (isolated venvs, uv/pre-commit caches, coverage dumps, built sdists).
# They are throw-away by construction and nothing references them, but some are created with
# permissions git cannot read, so WITHOUT these rules every `git status` also emits a
# "could not open directory ... Permission denied" warning. Ignoring them silences that too.
qa_tmp*/
.qa_full*/
