vscode-spell-checker icon indicating copy to clipboard operation
vscode-spell-checker copied to clipboard

How can I get list of all spelling mistakes across the project with a single command?

Open codewithdpk opened this issue 3 years ago • 1 comments

How can I get list of all spelling mistakes across the project withing the single command?

codewithdpk avatar Aug 15 '22 07:08 codewithdpk

@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.

Jason3S avatar Aug 15 '22 08:08 Jason3S

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.

github-actions[bot] avatar Dec 16 '22 05:12 github-actions[bot]