Skip to content

Commit

Permalink
Update frontend/dockerfile/linter/ruleset.go
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe Santos <[email protected]>
  • Loading branch information
felipecrs authored Oct 31, 2024
1 parent ddbc0f2 commit 8bf8834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/dockerfile/linter/ruleset.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var (
Description: "The AS keyword should match the case of the FROM keyword",
URL: "https://docs.docker.com/go/dockerfile/rule/from-as-casing/",
Format: func(from, as string) string {
return fmt.Sprintf("'%s' and '%s' keywords casing do not match", as, from)
return fmt.Sprintf("Casing mismatch: keywords '%s' and '%s' should match in case", from, as)
},
}
RuleNoEmptyContinuation = LinterRule[func() string]{
Expand Down

0 comments on commit 8bf8834

Please sign in to comment.