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
It would be nice if scspell supported the pre-commit tool as has been done with codespell.
scspell
We just need to add a .pre-commit-hooks.yaml file at the top level. It would look something like:
.pre-commit-hooks.yaml
- id: scspell name: scspell description: 'spell checking' entry: scspell args: [--report-only] language: python types: [text]
The user would then need to add their source controlled dictionaries. The user .pre-commit-config.yaml would use a:
.pre-commit-config.yaml
- repo: https://github.com/myint/scspell rev: [new version #] hooks: - id: scspell args: [--use-builtin-base-dict,--override-dictionary=/path/to/dictionary_file.txt]
Hopefully this configuration would make things "stateless" enough that it could be run across different machines without any issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice if
scspell
supported the pre-commit tool as has been done with codespell.We just need to add a
.pre-commit-hooks.yaml
file at the top level. It would look something like:The user would then need to add their source controlled dictionaries. The user
.pre-commit-config.yaml
would use a:Hopefully this configuration would make things "stateless" enough that it could be run across different machines without any issue.
The text was updated successfully, but these errors were encountered: