(skipSchemaValidation bool)
| 56 | } |
| 57 | |
| 58 | func TemplateLinterSkipSchemaValidation(skipSchemaValidation bool) TemplateLinterOption { |
| 59 | return func(tl *templateLinter) { |
| 60 | tl.skipSchemaValidation = skipSchemaValidation |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | func newTemplateLinter(linter *support.Linter, namespace string, values map[string]any, options ...TemplateLinterOption) templateLinter { |
| 65 |
no outgoing calls
searching dependent graphs…