Add HANDOFF.md to .gitignore for session handoff notes. Delete 12 temporary files (FIXME_M1-M10, FEAT_M9, TEST_REPORT).
67 lines
933 B
Plaintext
67 lines
933 B
Plaintext
# --- Python bytecode ---
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# --- Virtual environments ---
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# --- Distribution / build ---
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.egg
|
|
pip-wheel-metadata/
|
|
|
|
# --- Testing / coverage ---
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
coverage.xml
|
|
|
|
# --- Environment files ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# --- IDE files ---
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.zvec-grep/
|
|
|
|
# --- OS files ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Project-specific state files ---
|
|
.blog_rss_state.json
|
|
.caldav_sync_state.json
|
|
*.state.json
|
|
|
|
# --- Local scratch / WIP files ---
|
|
FIXME_*
|
|
FEAT_*
|
|
TEST_*
|
|
HANDOFF.md
|
|
.worktrees/
|
|
|
|
# --- Logs ---
|
|
*.log
|
|
|
|
# --- Artefacts iCal temporaires ---
|
|
# Ignorer les exports iCal temporaires (peuvent contenir des jetons ou données scolaires).
|
|
# Les fixtures iCal anonymisées (M13) restent suivies car elles ne correspondent pas au suffixe *.tmp.ics.
|
|
*.tmp.ics
|