We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703fe0e commit 8910127Copy full SHA for 8910127
.pre-commit-config.yaml
@@ -12,6 +12,13 @@ repos:
12
- id: black
13
language_version: python3.9
14
15
+ - repo: https://github.com/codespell-project/codespell
16
+ rev: v2.4.1
17
+ hooks:
18
+ - id: codespell # See pyproject.toml for args
19
+ additional_dependencies:
20
+ - tomli
21
+
22
- repo: https://github.com/pycqa/flake8
23
rev: 7.2.0
24
hooks:
pyproject.toml
@@ -86,6 +86,9 @@ target-version = [
86
profile = "black"
87
py_version = "39"
88
89
+[tool.codespell]
90
+skip = "AUTHORS.rst,*.po"
91
92
[tool.coverage.run]
93
parallel = true
94
branch = true
0 commit comments