You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aws-loadbalancer-controller/test.yml
83:53 error string value is not quoted with double quotes (quoted-strings)
86:45 error string value is not quoted with double quotes (quoted-strings)
Would be possible to add support for this case instead of settigng quote-type: any (by default we use double)?
The text was updated successfully, but these errors were encountered:
What would the logic for this have to look like to be reliable? Suppose quote-type is double, would you expect that a string that contains one or more literal " characters should be exempt from the rule? Would some users not like this, because you can still escape " if you really want to keep strict double quoting?
For some Kubernetes manifests there are annotation with values in JSON format which have to be quoted in single quotes.
One example is AWS Load balancer Controller: https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.2/guide/ingress/annotations/
Linting this fails:
with error:
Would be possible to add support for this case instead of settigng
quote-type: any
(by default we usedouble
)?The text was updated successfully, but these errors were encountered: