From ec366163e39d0e1ca9174b908baa60313389a74a Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Sat, 13 Jun 2026 02:24:22 +0200 Subject: [PATCH] ci(codespell): skip translated locale dirs and TRANSLATING.md Non-English UI translations and the foreign-language examples in TRANSLATING.md trip codespell on real foreign words. Extend the skip list to cover es, fr, it, pt, ru, zh-CN locale dirs and the TRANSLATING.md doc, keeping en/common.json as the source of truth. --- .github/workflows/golangci-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index d69881076..e4bbb9cd9 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -30,7 +30,7 @@ jobs: # segment by codespell and behave the same across versions; the # recursive "**" form did not take effect with the codespell shipped # by this action. - skip: go.mod,go.sum,*/proxy/web/*,*pnpm-lock.yaml,*package-lock.json,*/locales/de/*,*/locales/hu/* + skip: go.mod,go.sum,*/proxy/web/*,*pnpm-lock.yaml,*package-lock.json,*/locales/de/*,*/locales/es/*,*/locales/fr/*,*/locales/hu/*,*/locales/it/*,*/locales/pt/*,*/locales/ru/*,*/locales/zh-CN/*,*/i18n/TRANSLATING.md golangci: strategy: fail-fast: false