diff --git a/pkg/lint/rules/template.go b/pkg/lint/rules/template.go index 3372b6ba5..e9c37cda3 100644 --- a/pkg/lint/rules/template.go +++ b/pkg/lint/rules/template.go @@ -190,7 +190,7 @@ func validateTopIndentLevel(content string) error { func validateLibraryTemplate(fileName string) error { if fileName[0] != '_' { - return fmt.Errorf("template file name %s does not start with '_' character", fileName) + return fmt.Errorf("template file name %s does not start with '_' character, which is not convention for library charts", fileName) } return nil }