From 65a211fd0993b7d4214314f3fffaf35135bf1222 Mon Sep 17 00:00:00 2001 From: majiayu000 <1835304752@qq.com> Date: Fri, 2 Jan 2026 02:59:24 +0800 Subject: [PATCH] Exclude VPA from deprecated golint since it uses golangci-lint VPA component has migrated to golangci-lint with its own .golangci.yaml config and dedicated GitHub Actions workflow (vpa-golangci-lint.yaml). This change excludes VPA packages from the deprecated golint script to avoid redundant linting with the deprecated tool. Signed-off-by: majiayu000 <1835304752@qq.com> --- hack/verify-golint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/verify-golint.sh b/hack/verify-golint.sh index a5b7fbf7d279..1bd227a74720 100755 --- a/hack/verify-golint.sh +++ b/hack/verify-golint.sh @@ -37,6 +37,7 @@ excluded_packages=( 'cluster-autoscaler/cloudprovider/tencentcloud/tencentcloud-sdk-go' 'cluster-autoscaler/cloudprovider/volcengine/volc-sdk-golang' 'cluster-autoscaler/cloudprovider/volcengine/volcengine-go-sdk' + 'vertical-pod-autoscaler' ) FIND_PACKAGES='go list ./... 2> /dev/null'