-
Notifications
You must be signed in to change notification settings - Fork 12
CI: Add automated spellchecking #47
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,8 @@ | |
| "clients:rust:lint": "zx ./scripts/client/lint-rust.mjs", | ||
| "clients:rust:publish": "zx ./scripts/client/publish-rust.mjs", | ||
| "clients:rust:test": "zx ./scripts/client/test-rust.mjs", | ||
| "template:upgrade": "zx ./scripts/upgrade-template.mjs" | ||
| "template:upgrade": "zx ./scripts/upgrade-template.mjs", | ||
| "spellcheck:rust": "cargo spellcheck --code 1" | ||
|
||
| }, | ||
| "devDependencies": { | ||
| "@codama/renderers-js": "^1.1.0", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| 1000 | ||
| config | ||
| metadata | ||
| json | ||
| uri | ||
| ui | ||
| cli | ||
| readme/S | ||
| arg/S | ||
| vec/S | ||
| enum/S | ||
| noop/S | ||
| realloc/S | ||
| overallocate/SGD | ||
| namespace | ||
| serde | ||
| deserialize/SRGD | ||
| deserialization | ||
| struct/S | ||
| param/S | ||
| tuple/S | ||
| metas | ||
| infos | ||
| async | ||
| subcommand | ||
| repo | ||
| init | ||
| solana | ||
| sol/S | ||
| blockchain/S | ||
| permissionless | ||
| composability | ||
| runtime | ||
| onchain | ||
| offchain | ||
| keypair/S | ||
| decrypt/SGD | ||
| lamport/S | ||
| validator/S | ||
| pubkey/S | ||
| sysvar/S | ||
| timestamp/S | ||
| entrypoint/S | ||
| spl | ||
| pda/S | ||
| multisignature/S | ||
| multisig/S | ||
| staker/S | ||
| APY | ||
| codama | ||
| autogenerated |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| [Hunspell] | ||
| use_builtin = true | ||
| skip_os_lookups = false | ||
| search_dirs = ["."] | ||
| extra_dictionaries = ["solana.dic"] | ||
|
|
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.
nit: as a convention, the other jobs are using the
setupaction immediately after thegit checkoutstep. Could we do the same here?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.
Ah yes, good call, I misunderstood how the cache action works, thanks!