Skip to content

Commit fe16b46

Browse files
authored
Fix the failing pre-commit.ci job (#429)
Added configuration for pre-commit hooks including codespell. * https://results.pre-commit.ci/repo/github/374820 A subset of #428 * #428
1 parent 0b0783b commit fe16b46

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.pre-commit-config.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Learn more about this config here: https://pre-commit.com/
2+
3+
# To enable these pre-commit hooks run: `uv tool install pre-commit`
4+
# or `pipx install pre-commit` or `brew install pre-commit`
5+
# Then in the project root directory run `pre-commit install`
6+
7+
repos:
8+
- repo: https://github.com/codespell-project/codespell
9+
rev: v2.4.1
10+
hooks:
11+
- id: codespell # See pyproject.toml for args
12+
additional_dependencies:
13+
- tomli

0 commit comments

Comments
 (0)