From b129189f4b0de540c5d3c79bd5c25884451d4630 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Thu, 10 Oct 2024 22:34:55 +0200 Subject: [PATCH] chore: update golangci-lint configuration --- .golangci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 8294920..5ca7c35 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,9 +1,4 @@ -issues.exclude-dirs: - - pkg/analyzer/testdata - linters-settings: - golint: - min-confidence: 0 goconst: min-len: 2 min-occurrences: 3 @@ -13,6 +8,8 @@ linters-settings: linters: enable-all: true disable: + - exportloopref # deprecated + - execinquery # deprecated - lll - prealloc - dupl @@ -26,4 +23,3 @@ linters: - gomnd - gocognit - nestif - - interfacer