We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57b4824 commit 88a2033Copy full SHA for 88a2033
.github/workflows/typos.yml
@@ -0,0 +1,20 @@
1
+# Spell checker
2
+
3
+name: Typos Action
4
5
+permissions:
6
+ contents: read
7
8
+on:
9
+ pull_request:
10
+ branches: [master]
11
12
+jobs:
13
+ spelling:
14
+ name: Spell Check with Typos
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout Actions Repository
18
+ uses: actions/checkout@v4
19
+ - name: Spell Check Repo
20
+ uses: crate-ci/[email protected]
_typos.toml
@@ -0,0 +1,11 @@
+[files]
+extend-exclude = [
+ ".git/", # Version control files
+ "achive/*", # Archive files
+]
+# Match Inside a Word - Case Insensitive
+[default.extend-words]
+ue = "ue" # Nestopia UE
+sav = "sav" # .sav file extension
+kernal = "kernal" # Commodore's low-level Operating System
0 commit comments