Skip to content

Commit

Permalink
Merge ce95951 into f4e10e0
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed Dec 1, 2023
2 parents f4e10e0 + ce95951 commit dd1a040
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Spelling

on:
pull_request:
push:

permissions:
contents: read

jobs:
typos_check:
name: Typos
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Search for misspellings
uses: crate-ci/typos@master
33 changes: 33 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[files]
extend-exclude = [
".git/",
"tests/Fixtures/Integration/misc/",
"tests/Fixtures/Integration/priority/",
]
ignore-hidden = false

[default]
extend-ignore-re = [
"Sebastiaan Stok",
"mettre sur",
"posa sur",
"\\S+…",
"\\$thi Hello!",
# Mixed case
"function __construcT",
"lIst\\{",
"const foO",
"\\$a->ba\\b",
"function foO",
"use BaRr",
"new foO",
"StatiC",
"__consTRUCT",
"__IsseT",
"\\bbaR",
"__clasS__",
"sTRING",
]

[default.extend-words]
"invokable" = "invokable"

0 comments on commit dd1a040

Please sign in to comment.