We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e6086 commit e15576cCopy full SHA for e15576c
2 files changed
.pre-commit-config.yaml
@@ -58,6 +58,12 @@ repos:
58
- types-PyYAML
59
- types-requests
60
61
+ - repo: https://github.com/codespell-project/codespell
62
+ rev: v2.4.1
63
+ hooks:
64
+ - id: codespell
65
+ name: Check spelling with codespell
66
+
67
- repo: meta
68
hooks:
69
- id: check-hooks-apply
pyproject.toml
@@ -3,6 +3,12 @@ line-length = 79
3
skip-string-normalization = true
4
target-version = ["py313"]
5
6
+# Ref: https://github.com/codespell-project/codespell#using-a-config-file
7
+[tool.codespell]
8
+check-hidden = true
9
+# ignore-regex = ""
10
+ignore-words-list = "subtile"
11
12
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
13
# requires Flake8-pyproject
14
[tool.flake8]
0 commit comments