We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The codespell project can be used to identify common English spelling mistakes in text files. It should be added in CI here.
codespell
main
Add it to .pre-commit-config.yaml, with a block similar to this:
.pre-commit-config.yaml
- repo: https://github.com/codespell-project/codespell rev: v2.3.0 hooks: - id: codespell additional_dependencies: [tomli] args: ["--toml", "pyproject.toml"]
Add any relevant configuration in pyproject.toml. Example from rmm: https://github.com/rapidsai/rmm/blob/b4c43c5fd03cf93fd935343a4e8b2ccfa763afdb/pyproject.toml#L3-L11
pyproject.toml
rmm
And run like this:
pre-commit run --all-files
N/A
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
The
codespell
project can be used to identify common English spelling mistakes in text files. It should be added in CI here.Benefits of this work
Acceptance Criteria
main
passescodespell
checksApproach
Add it to
.pre-commit-config.yaml
, with a block similar to this:Add any relevant configuration in
pyproject.toml
. Example fromrmm
: https://github.com/rapidsai/rmm/blob/b4c43c5fd03cf93fd935343a4e8b2ccfa763afdb/pyproject.toml#L3-L11And run like this:
Notes
N/A
The text was updated successfully, but these errors were encountered: