File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ [codespell]
2+ # Ref: https://github.com/codespell-project/codespell#using-a-config-file
3+ skip = .git*,go.sum,.codespellrc
4+ check-hidden = true
5+ # ignore-regex =
6+ ignore-words-list = dne,haa
Original file line number Diff line number Diff line change 1+ # Codespell configuration is within .codespellrc
2+ ---
3+ name : Codespell
4+
5+ on :
6+ push :
7+ branches : [main]
8+ pull_request :
9+ branches : [main]
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ codespell :
16+ name : Check for spelling errors
17+ runs-on : ubuntu-latest
18+
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v4
22+ - name : Annotate locations with typos
23+ uses : codespell-project/codespell-problem-matcher@v1
24+ - name : Codespell
25+ uses : codespell-project/actions-codespell@v2
You can’t perform that action at this time.
0 commit comments