Skip to content

Commit 4554ef9

Browse files
committed
Check typos
1 parent 3662cdc commit 4554ef9

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/typos.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
# yamllint disable rule:line-length
3+
name: check_typos
4+
5+
on: # yamllint disable-line rule:truthy
6+
push:
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: typos-action
19+
uses: crate-ci/[email protected]

_typos.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Instruction: https://github.com/marketplace/actions/typos-action#getting-started
2+
[default.extend-words]
3+
JSUT = "JSUT"
4+
jsut = "jsut"
5+
inout = "inout"
6+
7+
[default.extend-identifiers]
8+
9+
[files]
10+
extend-exclude = []

0 commit comments

Comments
 (0)