From 7e3a29158e002534c419c688079394fd1d4b651a Mon Sep 17 00:00:00 2001 From: zack olson Date: Mon, 4 Nov 2024 10:32:37 -0500 Subject: [PATCH] update golangci.yml to remove deprecation warnings --- .golangci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 8ac8a07..768c529 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,6 +1,4 @@ run: - skip-dirs: - - test-cmds timeout: 5m linters: @@ -18,16 +16,12 @@ linters: - gosec - gosimple - ineffassign - - interfacer - - maligned - noctx - staticcheck - - structcheck - - varcheck linters-settings: errcheck: - ignore: github.com/go-kit/kit/log:Log + exclude-functions: github.com/go-kit/kit/log:Log gofmt: simplify: false @@ -37,3 +31,5 @@ issues: - linters: - paralleltest text: "does not use range value in test Run" + exclude-dirs: + - test-cmds