From d7c937b7ff7a3dc5d64ccc36bedb2bb40750bbd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Tue, 20 Sep 2022 21:13:39 +0000 Subject: [PATCH] Ignore qunit for spelling check Only use one tool to check spelling. --- .github/workflows/lint.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c35acf7742c..2d784b1118e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,13 +39,4 @@ jobs: python -m pip install --upgrade pip pip install codespell==2.1.0 - name: Check spelling with codespell - run: codespell --ignore-words=codespell.txt || exit 1 - misspell: - name: Check spelling all files in commit with misspell - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Install - run: wget -O - -q https://raw.githubusercontent.com/client9/misspell/c0b55c8239520f6b5aa15a0207ca8b28027ba49e/install-misspell.sh | sh -s -- -b . - - name: Misspell - run: git ls-files --empty-directory | xargs ./misspell -i 'aircrafts,devels,invertions' -error + run: codespell --ignore-words=codespell.txt --skip="./actionview/test/ujs/public/vendor/qunit.js" || exit 1