Documentation ¶
Overview ¶
Package lint contains tools for linting charts.
Linting is the process of testing charts for errors or warnings regarding formatting, compilation, or standards compliance.
Index ¶
Constants ¶
View Source
const ( // UnknownSev indicates that the severity of the error is unknown, and should not stop processing. UnknownSev = iota // InfoSev indicates information, for example missing values.yaml file InfoSev // WarningSev indicates that something does not meet code standards, but will likely function. WarningSev // ErrorSev indicates that something will not likely function. ErrorSev )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Message ¶
type Message struct { // Severity is one of the *Sev constants Severity Severity // Text contains the message text Text string }
Message is a linting output message
type ValidationFunc ¶
Click to show internal directories.
Click to hide internal directories.