From b3eb5f245344c1d415495c0eba21fdce70e5fe45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Tue, 5 May 2026 15:15:15 +0200 Subject: [PATCH] [ci] Skip lockfiles in codespell pnpm-lock.yaml and package-lock.json embed package hashes that look like English words to codespell (e.g. "nD" -> "and"), causing false positives that can't be fixed because the lockfile is auto-generated. Add the standard lockfile patterns to the skip list alongside the existing go.mod/go.sum/proxy-web entries. --- .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 62dfe9bce..99181d8c9 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -20,7 +20,7 @@ jobs: uses: codespell-project/actions-codespell@v2 with: ignore_words_list: erro,clienta,hastable,iif,groupd,testin,groupe,cros,ans,deriver,te,userA - skip: go.mod,go.sum,**/proxy/web/** + skip: go.mod,go.sum,**/proxy/web/**,**/pnpm-lock.yaml,**/package-lock.json golangci: strategy: fail-fast: false