diff --git a/.golangci.yaml b/.golangci.yaml index 5aaed94..9e59caf 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -1,6 +1,6 @@ linters-settings: govet: - check-shadowing: true + shadow: true golint: min-confidence: 0 maligned: @@ -16,7 +16,6 @@ linters: disable-all: true enable: - bodyclose - - deadcode - depguard - dogsled - dupl @@ -25,27 +24,23 @@ linters: - gocritic - gofmt - goimports - - golint + - revive - goprintffuncname - gosec - gosimple - govet - ineffassign - - interfacer - misspell - nolintlint - rowserrcheck - - scopelint - staticcheck - - structcheck - stylecheck - typecheck - unconvert - unparam - unused - - varcheck - whitespace - - maligned + - exportloopref service: golangci-lint-version: 1.33.x