vscode-spell-checker
vscode-spell-checker copied to clipboard
How can I get list of all spelling mistakes across the project with a single command?
How can I get list of all spelling mistakes across the project withing the single command?
@codewithdpk,
Similar to #1978
The cspell command line tool can help with that.
Using a command line tool:
Using Node
From the terminal view:
npx cspell "**"
To get help: npx cspell lint --help.
Using Docker
From the terminal view:
docker run -v $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest "**" --relative --no-progress
To get help: docker run -v $PWD:/workdir ghcr.io/streetsidesoftware/cspell:latest lint --help.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.