Commit 03955050 authored by Miguel Ángel Martínez Triviño's avatar Miguel Ángel Martínez Triviño Committed by GitHub

Merge pull request #1077 from migmartri/1037-validate-quotes

Disable validateQuotes linter rule
parents dbdb4df5 cb12d964
......@@ -92,7 +92,8 @@ func Templates(linter *support.Linter) {
// Check that all the templates have a matching value
linter.RunLinterRule(support.WarningSev, path, validateNoMissingValues(templatesPath, valuesToRender, preExecutedTemplate))
linter.RunLinterRule(support.WarningSev, path, validateQuotes(string(preExecutedTemplate)))
// NOTE, disabled for now, Refs https://github.com/kubernetes/helm/issues/1037
// linter.RunLinterRule(support.WarningSev, path, validateQuotes(string(preExecutedTemplate)))
renderedContent := renderedContentMap[fileName]
var yamlStruct K8sYamlStruct
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment