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 cd470ffCopy full SHA for cd470ff
.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
@@ -82,6 +82,9 @@ target-version = [
82
"py39",
83
]
84
85
+[tool.codespell]
86
+skip = "AUTHORS.rst,*.po"
87
88
[tool.isort]
89
profile = "black"
90
py_version = "39"
0 commit comments