We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15c99c commit ede92bdCopy full SHA for ede92bd
.github/typos.toml
@@ -0,0 +1,9 @@
1
+[default.extend-words]
2
+Symplify = "Symplify"
3
+
4
+# doctrine behavior
5
+Deleteable = "Deleteable"
6
7
+# fixing typo in code
8
+"Fullfilled" = "Fullfilled"
9
.github/workflows/typos.yaml
@@ -0,0 +1,24 @@
+# see https://github.com/crate-ci/typos
+name: "Typos"
+on:
+ pull_request:
+ push:
+ branches:
+ - "main"
10
+jobs:
11
+ typos:
12
+ name: "Check for typos"
13
+ runs-on: "ubuntu-latest"
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
19
20
+ - name: "Check for typos"
21
+ uses: "crate-ci/typos@v1.40.0"
22
+ with:
23
+ config: .github/typos.toml
24
+ files: "README.md src config rules tests rules-tests"
0 commit comments