We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
codespell
1 parent 73beb88 commit a7678b0Copy full SHA for a7678b0
.pre-commit-config.yaml
@@ -0,0 +1,16 @@
1
+ci:
2
+ # pre-commit.ci will open PRs updating our hooks once a month
3
+ autoupdate_schedule: monthly
4
+ # skip any check that needs internet access
5
+ autofix_prs: true
6
+
7
+repos:
8
+ # Codespell hook configuration
9
+ - repo: https://github.com/codespell-project/codespell
10
+ rev: v2.3.0
11
+ hooks:
12
+ - id: codespell
13
+ name: Spell Check with Codespell
14
+ args: ['--ignore-words-list=hte,nd']
15
+ files: '\\.(tsx|md)$'
16
+ exclude: ''
0 commit comments