Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
19 changes: 19 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: typos

on:
push:
branches: [main]
pull_request:

permissions:
contents: read

jobs:
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check typos
uses: crate-ci/typos@master
with:
config: ./.typos.toml
15 changes: 15 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[default.extend-words]
# Hierarchical Event Descriptors (HED) is a domain acronym used throughout
# the course. typos confuses it with HEAD. Preserve the exact casing.
HED = "HED"
hed = "hed"

[files]
# Skip bundled third-party artifacts and lock files.
extend-exclude = [
"presentations/**/assets/**",
"**/dist/**",
"**/node_modules/**",
"**/*.lock",
"**/bun.lock",
]
Loading