Skip to content

Add codespell - #179

Open
lucacome wants to merge 1 commit into
mainfrom
chore/codespell
Open

Add codespell#179
lucacome wants to merge 1 commit into
mainfrom
chore/codespell

Conversation

@lucacome

@lucacome lucacome commented Mar 6, 2026

Copy link
Copy Markdown
Owner

No description provided.

Copilot AI review requested due to automatic review settings March 6, 2026 03:23
@github-actions github-actions Bot added documentation Improvements or additions to documentation chore labels Mar 6, 2026
@coderabbitai

coderabbitai Bot commented Mar 6, 2026

Copy link
Copy Markdown

Warning

Rate limit exceeded

@lucacome has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 19 minutes and 5 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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 configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 249f8f12-4cb7-4616-a5dc-1c1d4b6408b9

📥 Commits

Reviewing files that changed from the base of the PR and between 1821ba7 and 1ec7ef5.

📒 Files selected for processing (3)
  • .pre-commit-config.yaml
  • README.md
  • cmd/status.go
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch chore/codespell

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 status command help text.
  • Fix a typo in the README configuration example section.
  • Add codespell to .pre-commit-config.yaml (and exclude .github/.cache from 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.

Comment thread .pre-commit-config.yaml
@@ -1,3 +1,4 @@
exclude: .github/.cache

Copilot AI Mar 6, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
exclude: .github/.cache
exclude: ^\.github/\.cache/

Copilot uses AI. Check for mistakes.
@lucacome

lucacome commented Mar 6, 2026

Copy link
Copy Markdown
Owner Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Mar 6, 2026

Copy link
Copy Markdown
✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore documentation Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants