From d718e884d180d58cb922743df9207caf5a9ebf1b Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Tue, 16 Apr 2024 05:29:56 +0000 Subject: [PATCH] enable testifylint linter Signed-off-by: Matthieu MOREL --- .golangci.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 78657f61..c3fc3f8b 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -288,28 +288,29 @@ linters: enable: - bodyclose - depguard - - usestdlibvars - - reassign - errcheck + - exportloopref - funlen + - gci - gocognit - goconst - gofmt - goimports - - revive - gosimple - govet - ineffassign - misspell - nakedret - - exportloopref + - reassign + - revive - staticcheck + - testifylint - typecheck - unconvert - unparam - unused + - usestdlibvars - whitespace - - gci # - gocritic # - godox # - gosec