Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/spell-check.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[default]
extend-ignore-re = [
# Ignore JWT/JWE tokens
"\\beyJ[\\dA-Za-z=_-]+(?:\\.[\\dA-Za-z=_-]{3,}){1,4}",
]

[default.extend-identifiers]
# Common registered claim abbreviations
alg = "alg"
typ = "typ"
iss = "iss"
sub = "sub"
aud = "aud"
exp = "exp"
nbf = "nbf"
iat = "iat"
jti = "jti"
cty = "cty"

# Custom exceptions (i.e. Github Usernames, proper nouns etc)
thaJeztah = "thaJeztah"
25 changes: 25 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: spelling

permissions:
contents: read

on:
push:
branches:
- main
pull_request:

env:
CLICOLOR: 1

jobs:
spelling:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Spell Check Repo
uses: crate-ci/[email protected]
with:
config: ./.github/spell-check.toml
Loading