Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ If you want to use Spellchecker CLI in a GitHub Actions workflow, try:
- https://github.com/marketplace/actions/spellchecker-cli for a simple, customizable wrapper around Spellchecker CLI
- https://github.com/marketplace/actions/spellchecker-cli-summary for a full-featured Spellchecker CLI workflow that can leave comments and status checks on your PRs

If you want to use Spellchecker CLI as a command-line tool on your own computer, you can install it globally:
If you want to use Spellchecker CLI as a command-line tool on your own computer witout having to manage it as a dependency, you can run it directly:

```shell
npx spellchecker-cli
```

Or you can install it globally:

```shell
npm install --global spellchecker-cli
Expand Down