-
I would like to use vscode-spell-checker, specifically in conjunction with the repository-specific local data, to check commits for spelling mistakes in CI. Has anyone done something like that? |
Beta Was this translation helpful? Give feedback.
Answered by
Jason3S
Jul 18, 2021
Replies: 2 comments
-
This spell checker uses the cspell library to do the spell checking. I suggest moving your settings to a Example to check all npx cspell "**/*.ts" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zyga
-
There is also an official GitHub Action: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@zyga,
This spell checker uses the cspell library to do the spell checking.
I suggest moving your settings to a
cspell.json
file so the cspell command line tool can pick them up.Example to check all
*.ts
files:npx cspell "**/*.ts"