From 7c540ce1438b94c58b4cf90c46e2febe18678a7a Mon Sep 17 00:00:00 2001 From: bartem Date: Wed, 20 Mar 2024 20:54:12 +0300 Subject: [PATCH] remove extra param Signed-off-by: bartem --- pkg/lint/lint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lint/lint.go b/pkg/lint/lint.go index cf7f4b041..2f02faa7e 100644 --- a/pkg/lint/lint.go +++ b/pkg/lint/lint.go @@ -27,7 +27,7 @@ import ( // All runs all of the available linters on the given base directory. // Deprecated, use AllWithOptions instead. func All(basedir string, values map[string]interface{}, namespace string, _ bool) support.Linter { - return AllWithOptions(basedir, values, namespace, nil) + return AllWithOptions(basedir, values, namespace) } // AllWithKubeVersion runs all the available linters on the given base directory, allowing to specify the kubernetes version.