From 33c67bdba229f79f5232813a6d48a0e8aaf101d9 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Thu, 4 Jan 2024 11:28:46 +0100 Subject: [PATCH] Update codespell config to ignore more paths (#3747) --- .github/codespell/codespell.ini | 2 +- .github/workflows/codespell.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/codespell/codespell.ini b/.github/codespell/codespell.ini index c1a20a75f2..681ebbd0f1 100644 --- a/.github/codespell/codespell.ini +++ b/.github/codespell/codespell.ini @@ -1,3 +1,3 @@ [codespell] -skip = *.js,*.ts,*.css,*.svg,./target +skip = *.js,*.ts,*.css,*.svg,*.html,*.json,./target,./tools/integration-test/data,./tools/check-guide/target,./ci/misbehaviour/data ignore-words = .github/codespell/words.txt diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index b352a70858..6ad483e50d 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -17,6 +17,6 @@ jobs: - uses: actions/checkout@v4 - uses: codespell-project/actions-codespell@v2 with: - skip: '*.js,*.ts,*.css,*.svg,./target' + skip: '*.js,*.ts,*.css,*.svg,*.html,*.json,./target,./tools/integration-test/data,./tools/check-guide/target,./ci/misbehaviour/data' ignore_words_file: .github/codespell/words.txt