Skip to content

Commit

Permalink
Merge pull request #172 from VisLab/addcodespell
Browse files Browse the repository at this point in the history
Added codespell to the repository
  • Loading branch information
VisLab authored Aug 12, 2024
2 parents 9b188b1 + b9032dd commit eda4601
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codespell]
skip = datasets,.git,*.pdf,*.svg,deprecated,*.xml,*.mediawiki,*.omn,datasets
ignore-words-list = covert,hed,recuse
22 changes: 22 additions & 0 deletions .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Codespell

on:
push:
branches: '*'
pull_request:
branches: '*'

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_modules
.idea
dist/
/venv/
spec_tests/

# Unit test / coverage reports
htmlcov/
Expand Down

0 comments on commit eda4601

Please sign in to comment.