From bb571b48c3c2f13196c015079f95ea79d2aea752 Mon Sep 17 00:00:00 2001 From: Marek Libra Date: Fri, 13 Jun 2025 10:55:42 +0200 Subject: [PATCH] fix(ci): add ST1005 linter rule Enable linter rule ST1005 - Incorrectly formatted error string Signed-off-by: Marek Libra --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 78e15eb775..f64c24aabe 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -58,6 +58,7 @@ linters: checks: - all - -ST1003 # https://staticcheck.dev/docs/checks/#ST1003 Poorly chosen identifier. + - -ST1005 # https://staticcheck.dev/docs/checks/#ST1005 Incorrectly formatted error string - -QF1008 # https://staticcheck.dev/docs/checks/#QF1008 Omit embedded fields from selector expression. nolintlint: require-specific: true