This GitHub Actions runs codespell over your code. Any warnings or errors will be annotated in the Pull Request.
uses: codespell-project/actions-codespell@v2
If set, check file names for spelling mistakes as well.
This parameter is optional; by default codespell
will only check the file contents.
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
Parameter: check_hidden
If set, check hidden files (those starting with ".") for spelling mistakes as well.
This parameter is optional; by default codespell
will not check hidden files.
uses: codespell-project/actions-codespell@v2
with:
check_hidden: true
File with lines that should not be checked for spelling mistakes.
This parameter is optional; by default codespell
will check all lines.
uses: codespell-project/actions-codespell@v2
with:
exclude_file: src/foo
Comma-separated list of files to skip (it accepts globs as well).
This parameter is optional; by default codespell
won't skip any files.
uses: codespell-project/actions-codespell@v2
with:
skip: foo,bar
Comma-separated list of builtin dictionaries to use.
This parameter is optional; by default codespell
will use its default selection of built in dictionaries.
uses: codespell-project/actions-codespell@v2
with:
builtin: clear,rare
File that contains words which will be ignored by codespell
. File must contain one word per line.
Words are case sensitive based on how they are written in the dictionary file.
This parameter is optional; by default codespell
will check all words for typos.
uses: codespell-project/actions-codespell@v2
with:
ignore_words_file: .codespellignore
Comma-separated list of words which will be ignored by codespell
.
Words are case sensitive based on how they are written in the dictionary file.
This parameter is optional; by default codespell
will check all words for typos.
uses: codespell-project/actions-codespell@v2
with:
ignore_words_list: abandonned,ackward
Comma-separated list of words which will be ignored by codespell
in URIs and emails only.
Words are case sensitive based on how they are written in the dictionary file.
If set to "*", all misspelling in URIs and emails will be ignored.
This parameter is optional; by default codespell
will check all URIs and emails for typos.
uses: codespell-project/actions-codespell@v2
with:
uri_ignore_words_list: abandonned
Indicates the path to run codespell
in.
This can be useful if your project has code you don't want to spell check for some reason.
This parameter is optional; by default codespell
will run on your whole repository.
uses: codespell-project/actions-codespell@v2
with:
path: src
Only warn about problems. All errors and warnings are annotated in Pull Requests, but it will act like everything was fine anyway. (In other words, the exit code is always 0.)
This parameter is optional; setting this to any value will enable it.
uses: codespell-project/actions-codespell@v2
with:
only_warn: 1