From 004cd70aed835cc2c71ba0ef447b93ad2cd6f1b4 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sat, 6 Apr 2024 23:52:56 +0200 Subject: [PATCH] fix: use unique rule number & wording [ci skip] --- pkg/lint/recipe.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/lint/recipe.go b/pkg/lint/recipe.go index 72e3b526..2e5c8ffe 100644 --- a/pkg/lint/recipe.go +++ b/pkg/lint/recipe.go @@ -116,10 +116,10 @@ var LintRules = map[string][]LintRule{ Function: LintHasRecipeRepo, }, { - Ref: "R014", + Ref: "R015", Level: "warn", - Description: "Long secret names", - HowToResolve: "Reduce the length of secret names to 12 characters.", + Description: "long secret names", + HowToResolve: "reduce length of secret names to 12 chars", Function: LintSecretLengths, }, },