From 7103c20916469f7257fbd999b448f7f1e1e2fff6 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Fri, 9 May 2025 14:18:04 +0200 Subject: [PATCH] one more attempt at excluding dist from codespell --- .codespellrc | 2 +- .github/workflows/spellcheck.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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