diff --git a/.codespellrc b/.codespellrc index f0fc8f72..3cfa5ccb 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,6 +1,6 @@ [codespell] # Ref: https://github.com/codespell-project/codespell#using-a-config-file -skip = .git*,package-lock.json,*.css,.codespellrc,/dist* +skip = ./.git,./dist,.package-lock.json,*.css,.codespellrc check-hidden = true # Ignore super long lines -- must be minimized etc, acronyms # and some near hit variables diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index 932cd96b..9f8bff5a 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -22,4 +22,4 @@ jobs: - name: Codespell uses: codespell-project/actions-codespell@v2 with: - skip: .git*,package-lock.json,*.css,.codespellrc,/dist* + skip: ./.git,./dist,.package-lock.json,*.css,.codespellrc