Skip to content

Commit

Permalink
taskfile.yml: Add a spellcheck command
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjharder committed May 16, 2024
1 parent c3b17d1 commit d24f009
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@ tasks:
- awk -i inplace '{print tolower($0)}' $TARGET
- sort -o $TARGET $TARGET
- awk -i inplace '!seen[$0]++' $TARGET

# Run cspell on all .md/mdx docs in the project. Should use project configuration with allow-word list
spellcheck:
desc: Run cspsell on all .md* files
shopt: [globstar]
cmds:
- cmd: yarn cspell lint **/*.md*
ignore_error: true

0 comments on commit d24f009

Please sign in to comment.