chore: ignore .worktrees/ in the repo gitignore#4334
Conversation
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📜 Recent review details⏰ Context from checks skipped due to timeout. (6)
🧰 Additional context used🧠 Learnings (5)📚 Learning: 2026-04-13T21:43:58.707ZApplied to files:
📚 Learning: 2026-04-23T13:26:27.529ZApplied to files:
📚 Learning: 2026-04-30T21:28:35.705ZApplied to files:
📚 Learning: 2026-05-12T06:43:09.116ZApplied to files:
📚 Learning: 2026-05-19T21:04:49.990ZApplied to files:
🔇 Additional comments (1)
WalkthroughUpdated 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Add
.worktrees/to the repo.gitignore.The pre-push hook runs
oxfmt --check .andoxlint .over the whole tree, and those tools only read the in-repo ignore files (not a user's global gitignore). Local git-worktree checkouts placed under.worktrees/therefore got linted/formatted, failing the hook on unrelated code. Ignoring the directory keeps both tools out of worktree checkouts. No source changes.