Skip to content

Commit f17bb76

Browse files
committed
Campaign merge: campaign/pr-review-static-checks/task-003
2 parents 6820e84 + 0c80ea6 commit f17bb76

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

.github/workflows/typos.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Typos Check
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
typos:
11+
name: Typos Check
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: crate-ci/typos@v1

.typos.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[files]
2+
extend-exclude = [
3+
"build/",
4+
"workspace/",
5+
".gradle/",
6+
"gradle.lockfile",
7+
"settings-gradle.lockfile",
8+
"LICENSE-3rdparty.csv",
9+
"*.jar",
10+
"*.class",
11+
"*.so",
12+
"*.dylib",
13+
]
14+
extend-include = [
15+
"*.java",
16+
"*.kt",
17+
"*.groovy",
18+
"*.md",
19+
"*.yaml",
20+
"*.yml",
21+
"*.gradle",
22+
"*.gradle.kts",
23+
]
24+
25+
[default.extend-words]
26+
ot = "ot"
27+
ba = "ba"
28+
nd = "nd"
29+
crate = "crate"
30+
hashi = "hashi"
31+
pullrequest = "pullrequest"

0 commit comments

Comments
 (0)