Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgiy-Tugai committed Sep 13, 2024
1 parent 2eb7f4d commit a1cacb0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ concurrency:
cancel-in-progress: true

jobs:
typos:
runs-on: ubuntu-latest
name: typos
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master

build-linux:
runs-on: ubuntu-latest
timeout-minutes: 30
Expand Down
17 changes: 17 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
files.extend-exclude = ["distr/*"]

# typos can't handle "2nd" as a word (yet?)
default.extend-ignore-identifiers-re = ["_2nd"]

[default.extend-words]
ser = "ser" # serialization
thr = "thr" # thread

[default.extend-identifiers]
ba = "ba" # block_allocator
ecs_eis = "ecs_eis" # entity index store (entity_index.h)
numer = "numer" # numerator (posix_impl.inl)
ot = "ot" # Opaque Type or Other Table
Fo = "Fo" # used in test cases/examples
UE4 = "UE4"
PNGs = "PNGs"

0 comments on commit a1cacb0

Please sign in to comment.