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 0a982d8 commit 557308bCopy full SHA for 557308b
.codespellrc
@@ -0,0 +1,3 @@
1
+[codespell]
2
+ignore-words-list = crate
3
+skip = .git,*.lock
.github/workflows/codespell.yml
@@ -0,0 +1,19 @@
+---
+name: Codespell
+
4
+on:
5
+ push:
6
+ branches: [ main ]
7
+ pull_request:
8
9
10
+jobs:
11
+ codespell:
12
+ name: Check for spelling errors
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ - name: Codespell
19
+ uses: codespell-project/actions-codespell@v2
0 commit comments