-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The wordlist is modified to accept all words in UPPERCASE, since those are the ones causing the most trouble and are often command arguments or acronyms not known by the spellchecker. Some more regexes are added to the wordlist. The CI job is modified to use another action. A bunch of actual spelling errors are fixed. Fixes #93 --------- Signed-off-by: Viktor Söderqvist <[email protected]>
- Loading branch information
1 parent
5f279b9
commit f4ce160
Showing
13 changed files
with
91 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,13 @@ | ||
name: Spellcheck | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
on: [push, pull_request] | ||
permissions: | ||
contents: read | ||
jobs: | ||
spellcheck: | ||
runs-on: ubuntu-latest | ||
name: Spellcheck | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Spellcheck | ||
uses: redis-stack/github-actions/spellcheck@main | ||
env: | ||
DICTIONARY: wordlist | ||
DOCS_DIRECTORY: . | ||
CONFIGURATION_FILE: .spellcheck.yml | ||
COMMANDS_FILES: commands.json | ||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | ||
- uses: tbroadley/spellchecker-cli-action@v1 | ||
with: | ||
files: "commands/*.md topics/*.md !topics/modules-api-ref.md" | ||
config: .spellcheckerrc.yml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
files: | ||
- 'topics/*.md' | ||
- 'commands/*.md' | ||
- '!topics/modules-api-ref.md' | ||
dictionaries: | ||
- wordlist | ||
noSuggestions: true | ||
quiet: true | ||
plugins: | ||
- spell | ||
- frontmatter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.