We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc7367 commit d661f9cCopy full SHA for d661f9c
.github/workflows/spelling.yml
@@ -0,0 +1,23 @@
1
+name: Spelling
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request: null
8
+ workflow_dispatch: null
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ typos_check:
16
+ name: Typos
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
22
+ - name: Check spelling
23
+ uses: crate-ci/typos@master
.typos.toml
@@ -0,0 +1,14 @@
+[files]
+extend-exclude = [
+ ".git/",
+ "source/",
+ "wordpress-stubs.php",
+]
+ignore-hidden = false
+[default.extend-identifiers]
+Automattic = "Automattic"
+get_post_stati = "get_post_stati"
+Github = "GitHub"
+Woocommerce = "WooCommerce"
+Wordpress = "WordPress"
0 commit comments