Add codespell - #179
Conversation
|
Warning Rate limit exceeded
⌛ 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. ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ 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.
Pull request overview
This PR adds spell-checking to the repo’s developer workflow by introducing a codespell pre-commit hook, and it fixes a couple of user-facing typos surfaced by that effort.
Changes:
- Fix spelling/grammar in the
statuscommand help text. - Fix a typo in the README configuration example section.
- Add
codespellto.pre-commit-config.yaml(and exclude.github/.cachefrom hooks).
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
cmd/status.go |
Corrects CLI help text (“information” vs “informations”). |
README.md |
Fixes a documentation typo (“example” vs “exemple”). |
.pre-commit-config.yaml |
Adds codespell hook and an exclude entry for .github/.cache. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| @@ -1,3 +1,4 @@ | |||
| exclude: .github/.cache | |||
There was a problem hiding this comment.
exclude in pre-commit is a regex; .github/.cache uses unescaped . which matches any character, so this can exclude unintended paths. Consider anchoring and escaping dots (e.g., ^\.github/\.cache/) to only skip that directory.
| exclude: .github/.cache | |
| exclude: ^\.github/\.cache/ |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
No description provided.