We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a52b52 commit 09562bbCopy full SHA for 09562bb
.pre-commit-config.yaml
@@ -81,4 +81,19 @@ repos:
81
test/utils.py|
82
)$
83
84
-
+- repo: https://github.com/codespell-project/codespell
85
+ rev: v1.16.0
86
+ hooks:
87
+ - id: codespell
88
+ name: codespell
89
+ description: Checks for common misspellings in text files.
90
+ args:
91
+ [
92
+ "-I",
93
+ ".github/actions/spelling/allow.txt",
94
+ ".github/actions/spelling/only.txt",
95
+ ".github/actions/spelling/expect.txt",
96
+ ".github/actions/spelling/excludes.txt",
97
+ ]
98
+ language: python
99
+ types: [text]
0 commit comments