diff --git a/.github/workflows/spell_checking.yml b/.github/workflows/spell_checking.yml index 55e8919..ae1c298 100644 --- a/.github/workflows/spell_checking.yml +++ b/.github/workflows/spell_checking.yml @@ -21,7 +21,7 @@ jobs: pip install codespell if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Check spelling with codespell - run: codespell --ignore-words=codespell.txt || exit 1 + run: codespell --ignore-words=cs-ignorewords.txt --exclude-file=cs-excludelines.txt || exit 1 misspell: name: Check spelling with misspell runs-on: ubuntu-latest diff --git a/cs-excludelines.txt b/cs-excludelines.txt new file mode 100644 index 0000000..af6e96c --- /dev/null +++ b/cs-excludelines.txt @@ -0,0 +1,3 @@ +:source-highlighter: rouge +gem install rouge +((juxt :a :b) {:a "ala" :b "bala"}) diff --git a/codespell.txt b/cs-ignorewords.txt similarity index 100% rename from codespell.txt rename to cs-ignorewords.txt