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 e11d29b commit db41de5Copy full SHA for db41de5
.codespellrc
@@ -0,0 +1,4 @@
1
+[codespell]
2
+skip = node_modules, _book, images
3
+count =
4
+ignore-words-list = aNULL, userA, followings
.github/workflows/codespell.yml
@@ -0,0 +1,23 @@
+name: Add check with codespell
+
+on:
+ pull_request:
5
+ workflow_dispatch:
6
7
+concurrency:
8
+ group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ spell-check:
13
+ name: check spelling with codespell
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-python@v5
18
+ with:
19
+ python-version: '3.13'
20
+ - name: Install codespell
21
+ run: pip install codespell
22
+ - name: Run codespell
23
+ run: codespell
0 commit comments