Lint is the action for checking that the semantics of a chart are well-formed. It provides the implementation of 'helm lint'.
| 32 | // |
| 33 | // It provides the implementation of 'helm lint'. |
| 34 | type Lint struct { |
| 35 | Strict bool |
| 36 | Namespace string |
| 37 | WithSubcharts bool |
| 38 | Quiet bool |
| 39 | SkipSchemaValidation bool |
| 40 | KubeVersion *common.KubeVersion |
| 41 | } |
| 42 | |
| 43 | // LintResult is the result of Lint |
| 44 | type LintResult struct { |
nothing calls this directly
no outgoing calls
no test coverage detected