chore: clean generated artifacts and ignores#9
Conversation
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Reviewer's guide (collapsed on small PRs)Reviewer's Guide.gitignore is updated to add broader coverage for build artifacts, generated files, local databases, model outputs, caches, and native build products while ensuring no source files are accidentally ignored. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📝 WalkthroughWalkthroughThis PR extends the project's ChangesGitignore Configuration
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.gitignore:
- Around line 90-91: The .gitignore entries bench/bench_* and tests/test_* are
too broad and hide legitimate source files; narrow them to only generated-output
locations by replacing those patterns with directory-scoped ignores (for example
ignore bench/output/** or bench/build/** and tests/output/** or
tests/generated/**) or with explicit output filename patterns, and if needed add
allow-list exceptions (using !pattern) for any real source files you must keep;
update the patterns so they target build/generated outputs rather than source
filename patterns like bench/bench_* or tests/test_*.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
Removes no source files. Adds common ignore coverage for generated artifacts, local databases, model outputs, caches, and native build products.
Summary by Sourcery
Chores:
Summary by CodeRabbit
.gitignoreto exclude additional build artifacts, IDE files, temporary data, and generated outputs from version control.