From 83f1e4e6ac9ff687d2eec6518a40fc3a39ea221d Mon Sep 17 00:00:00 2001 From: Alexis Grojean Date: Fri, 24 Nov 2023 10:55:39 +0100 Subject: [PATCH] Ignore word "crate" in misspelling checks. --- .github/workflows/misspellings_checks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/misspellings_checks.yml b/.github/workflows/misspellings_checks.yml index 0333481..ec16bed 100644 --- a/.github/workflows/misspellings_checks.yml +++ b/.github/workflows/misspellings_checks.yml @@ -22,7 +22,8 @@ jobs: uses: actions/checkout@v3 - name: Check misspellings - uses: codespell-project/actions-codespell@v1 + uses: codespell-project/actions-codespell@v2 with: builtin: clear,rare check_filenames: true + ignore_words_list: crate,Crate