diff --git a/kyaml/.golangci.yml b/kyaml/.golangci.yml index 16c933f91..a340a84b0 100644 --- a/kyaml/.golangci.yml +++ b/kyaml/.golangci.yml @@ -14,7 +14,7 @@ linters: - depguard - dogsled - dupl -# - errcheck + - errcheck # - funlen # - gochecknoinits # - goconst @@ -22,7 +22,7 @@ linters: - gocyclo - gofmt - goimports -# - golint + - golint - gosec - gosimple - govet diff --git a/kyaml/kio/filters/container_test.go b/kyaml/kio/filters/container_test.go index 782033149..76410788a 100644 --- a/kyaml/kio/filters/container_test.go +++ b/kyaml/kio/filters/container_test.go @@ -109,9 +109,9 @@ metadata: return } instance := &ContainerFilter{ - Image: "example.com:version", + Image: "example.com:version", Network: "test-net", - Config: cfg, + Config: cfg, } cmd, err := instance.getCommand() if !assert.NoError(t, err) {