From 678bf01c2a2cdf5e55a3a47ad2e17366265739bd Mon Sep 17 00:00:00 2001 From: Christian Schlotter Date: Tue, 18 Feb 2025 09:33:36 +0100 Subject: [PATCH] fixup config --- .golangci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index c22845804d..85c8c32b07 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,11 +1,6 @@ run: timeout: 10m go: "1.23" - skip-files: - - "zz_generated.*\\.go$" - - "_conversion\\.go$" - - "vendored_cluster_api\\.go$" - - "^internal/apis/topology/v1alpha1" allow-parallel-runners: true linters: @@ -150,7 +145,6 @@ linters-settings: alias: ipamv1 nolintlint: allow-unused: false - allow-leading-space: false require-specific: true revive: rules: @@ -196,6 +190,11 @@ issues: # We are disabling default golangci exclusions because we want to help reviewers to focus on reviewing the most relevant # changes in PRs and avoid nitpicking. exclude-use-default: false + exclude-files: + - "zz_generated.*\\.go$" + - "_conversion\\.go$" + - "vendored_cluster_api\\.go$" + - "^internal/apis/topology/v1alpha1" exclude-rules: # Specific exclude rules for deprecated items that are still part of the codebase. These # should be removed as the referenced deprecated item is removed from the project.