From de4d50386d0fa32643c0fc16d9d2613c7229c603 Mon Sep 17 00:00:00 2001 From: Arthur Mello Date: Thu, 5 Dec 2019 16:32:17 -0300 Subject: [PATCH] kyaml: Enable Go linters (lll, stylecheck, unparam, whitespace) --- kyaml/.golangci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyaml/.golangci.yml b/kyaml/.golangci.yml index a340a84b0..7c89c16ba 100644 --- a/kyaml/.golangci.yml +++ b/kyaml/.golangci.yml @@ -16,7 +16,7 @@ linters: - dupl - errcheck # - funlen -# - gochecknoinits + - gochecknoinits # - goconst # - gocritic - gocyclo @@ -28,19 +28,19 @@ linters: - govet - ineffassign - interfacer -# - lll + - lll - misspell - nakedret - scopelint - staticcheck - structcheck -# - stylecheck + - stylecheck - typecheck - unconvert -# - unparam + - unparam - unused - varcheck -# - whitespace + - whitespace linters-settings: