Skip to content

Commit 27def50

Browse files
authored
chore: make spell check part of lint (#5)
1 parent c4939ff commit 27def50

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ jobs:
2121
node-version: ${{ matrix.node-version }}
2222
- name: Lint
2323
run: pnpm lint
24+
- name: Spell Check
25+
run: pnpm lint:spell

cspell.config.yaml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
1+
$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
12
version: '0.2'
23
ignorePaths:
34
- .git/{FETCH_HEAD,HEAD,index,packed-refs,config}
4-
- .git/{hooks,info,logs,objects,refs}/**
5+
- .git/*/*/**
6+
- .gitattributes
7+
- .gitignore
8+
- .prettierignore
9+
- .vscode
510
- '*-lock.*'
611
- '*.lock'
712
- /coverage
813
- /dist
914
- CHANGELOG.md
1015
- cspell.config.*
1116
- node_modules
12-
- .gitattributes
13-
- .gitignore
14-
- .prettierignore
15-
1617
enableGlobDot: true
1718
useGitignore: true
1819
dictionaryDefinitions: []
1920
dictionaries: []
2021
words:
21-
- lcov
22-
- pnpm
23-
- codeql
2422
- autobuild
2523
- buildscript
26-
- coverallsapp
2724
- codecov
28-
25+
- codeql
26+
- coverallsapp
27+
- lcov
28+
- pnpm
29+
- vitest
2930
ignoreWords: []
3031
import: []

0 commit comments

Comments
 (0)