# Real candidate CVs — contain PII (names, emails, phone numbers).
# NEVER commit these. Anonymised, generated fixtures live elsewhere.
tests/samples/
tests/cv_test/
tests/cv_tests/

# Local preview output of the synthetic CV corpus (regenerable).
.fixture_preview/

# Generated example profiles (regenerable via examples/build_example_profile.py).
examples/output_profiles/

# Generated profiles written to the CWD by `convert` / `make profile` — these
# contain real candidate PII (the source CV's data). NEVER commit them.
*_profile.docx
*_profile.review.md
*.review.md

# Temporary and binary files
*~
*.py[cod]
*.so
*.cfg
!.isort.cfg
!setup.cfg
*.orig
*.log
*.pot
__pycache__/*
.cache/*
.*.swp
*/.ipynb_checkpoints/*
.DS_Store

# Project files
.ropeproject
.project
.pydevproject
.settings
.idea
.vscode
tags

# Package files
*.egg
*.eggs/
.installed.cfg
*.egg-info

# Unittest and coverage
htmlcov/*
.coverage
.coverage.*
.tox
junit*.xml
coverage.xml
.pytest_cache/

# Build and docs folder/files
build/*
dist/*
sdist/*
docs/api/*
docs/_rst/*
docs/_build/*
cover/*
MANIFEST

# Per-project virtualenvs
.venv*/
.conda*/
.python-version
# Generated by setuptools_scm
src/profgen/_version.py

# Local secrets / API keys — never commit
.env
.env.*

# Private branded assets for `make profile` (confidential templates + style maps)
local/

# Incremental-test stamp cache (generated by `make test`; `make clean` removes it)
.stamps/

# Freeform bug/feedback scratch — may quote real candidate feedback (PII). Track
# bugs as GitHub Issues instead; keep this file out of git.
/BUGS
