Skip to content
Merged
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ with:
exclude_file: src/foo
```

### Parameter: config

Path to a `codespell` config file. The file uses INI format with a `[codespell]` section.

This parameter is optional. By default `codespell` automatically reads configuration from `pyproject.toml`, `setup.cfg`, and `.codespellrc` in the working directory; use this parameter only to point at a config file in a non-standard location.

```yml
uses: codespell-project/actions-codespell@v2
with:
config: path/to/codespell.cfg
```

### Parameter: skip

Comma-separated list of files to skip (it accepts globs as well).
Expand Down
Loading