Setup spell checker

This commit is contained in:
Jeong YunWon 2023-05-10 17:40:37 +09:00
parent 41e9e7280a
commit 75f6ce1ae5
5 changed files with 318 additions and 2 deletions

View file

@ -62,3 +62,12 @@ jobs:
run: python -m pip install ruff
- name: run python lint
run: ruff --ignore=E501 ast --show-source
- name: spell checker
uses: streetsidesoftware/cspell-action@v2
with:
files: |
'ast/**/*.rs'
'core/**/*.rs'
'literal/**/*.rs'
'parser/**/*.rs'