diff --git a/.codespellignore b/.codespellignore new file mode 100644 index 000000000..84c62677a --- /dev/null +++ b/.codespellignore @@ -0,0 +1,2 @@ +iif +mane diff --git a/.codespellrc b/.codespellrc index 9524aebac..d58726f2f 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,8 +1,6 @@ [codespell] # Ref: https://github.com/codespell-project/codespell#using-a-config-file -# generated/ was excluded but might need to be fixed as well! skip = .git*,*.svg,*.lock,*.css,.codespellrc,*.js,generated,assets,variants-summary.page.html check-hidden = true # Ignore super long lines -- must be minimized etc ignore-regex = ^.{120,}|\b(AllTime|allTime)\b -ignore-words-list = iif diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 7c9eafb17..3b6e3d522 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -21,3 +21,5 @@ jobs: uses: actions/checkout@v4 - name: Codespell uses: codespell-project/actions-codespell@v2 + with: + ignore_words_file: .codespellignore