# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.ruff_cache/
.mypy_cache/
dist/
build/

# Local data — never commit a user's scraped database, CV, or cache.
# Includes SQLite WAL sidecar files (added v0.10.4 after they leaked in
# v0.10.3 when WAL mode was enabled).
data/*.db
data/*.db-journal
data/*.db-wal
data/*.db-shm
data/*.log
data/*.log.*
data/bounties.json
data/cache/
data/cv/
*.sqlite

# Env
.env
.env.local

# Editor
.vscode/
.idea/
*.swp
.DS_Store

# Local config that may contain personal company lists
src/jobhunt/local_sources.yaml
