diff --git a/.golangci.yml b/.golangci.yml index aad6acff2..748863672 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,19 +1,19 @@ linters: enable: - - structcheck - - varcheck - - staticcheck - - unconvert + - exportloopref # Checks for pointers to enclosing loop variables - gofmt - goimports - - revive - - ineffassign - - vet - - unused - - misspell - gosec - - exportloopref # Checks for pointers to enclosing loop variables + - ineffassign + - misspell + - revive + - staticcheck + - structcheck - tenv # Detects using os.Setenv instead of t.Setenv since Go 1.17 + - unconvert + - unused + - varcheck + - vet disable: - errcheck