From 4b6bddbbc0cb8b9d8e453ab04796b75d36f9f877 Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Wed, 2 Oct 2024 14:03:14 -0700 Subject: [PATCH] codespell.yml: allow a proper name in our changelog See e.g. https://github.com/martinvonz/jj/actions/runs/11148768488 for the failure this fixes. --- .github/workflows/codespell.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 3875af3ac5..bb70b1ad3f 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -19,4 +19,6 @@ jobs: check_filenames: true check_hidden: true skip: ./target,./.jj,*.lock - ignore_words_list: crate,NotIn + # `Wirth` is the proper name of one of our contributors in the changelog. + # It seems Codespell does not allow per-file ignore_word_list. + ignore_words_list: crate,NotIn,Wirth