chore(gitignore): ignore Office lock files (~$*)#277
Conversation
Word/Excel/PowerPoint create files like ~$foo.docx in the same directory while a document is open. Adding the pattern so they never show up in git status during DOCX fixture or template authoring work.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
LLM-Based Quality GateOverall: ✅ PASS (14 pass · 0 warn · 14 total)
Full checklist questions
Estimated cost (this run): $0.0099 — 28,426 input + 527 output tokens (≈4 chars/token) on |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Summary
~$*to.gitignoreso Office lock files don't show up ingit statusduring DOCX fixture or template work.Why
Word/Excel/PowerPoint create lock files like
~$test-doc.docxnext to the open document. When testing or authoring DOCX fixtures locally with the document open in Word, these land ingit statusand can be accidentally staged.Test plan
git check-ignore -v ~\$foo.docxprints the new rule.