-
Notifications
You must be signed in to change notification settings - Fork 120
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
docs: add spell checker to ci #743
base: main
Are you sure you want to change the base?
Conversation
Adds cspell to CI to catch typos in code and docs.
f620b57
to
b9ec6c7
Compare
@@ -57,12 +57,12 @@ export interface WantListEntry { | |||
/** | |||
* Whether the remote should tell us if they have the block or not | |||
*/ | |||
sendDontHave: boolean | |||
sendDoNotHave: boolean |
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.
Since we export this interface, does this qualify as a breaking change?
@@ -31,14 +31,15 @@ | |||
"lint": "aegir run lint", | |||
"dep-check": "aegir run dep-check", | |||
"doc-check": "aegir run doc-check", | |||
"spell-check": "aegir spell-check", |
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.
Should we add a check
script that runs all 4:
- npm run lint
- npm run dep-check
- npm run doc-check
- npm run spell-check
Specifically, this seems like it would be useful for external contributors, when checks fails to run, they can fix locally quickly, without familiarity with each of the scripts.
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.
Nice
Adds cspell to CI to catch typos in code and docs.
Change checklist