-
Notifications
You must be signed in to change notification settings - Fork 0
Add spell checking #159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add spell checking #159
Conversation
There was a problem hiding this comment.
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 capabilities to the Anchor project's linting workflow using cspell. The typo fix in src/lib/resolver.ts (changing "acccount" to "account") demonstrates the value of this addition.
Changes:
- Fixed typo in comment: "acccount" → "account" in resolver.ts
- Added cspell and related dependencies to the project
- Integrated cspell into the Makefile's
do-linttarget
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/lib/resolver.ts | Fixed spelling error in JSDoc comment |
| package.json | Added cspell dependencies and npm script |
| package-lock.json | Lockfile updates for cspell packages and dependencies |
| Makefile | Integrated cspell command into do-lint target |
| .cspell.config.mjs | Main cspell configuration with project-specific word list |
| .cspell-ext.json | TypeScript dictionary import configuration |
|




This change adds spell checking to the Anchor linting project to ensure PRs have correctly spelled words.