openstack-helm/yamllint.conf
Vladimir Kozhukalov adc22b613b Update yamllint.conf
This PR updates the yaml linter configuration
to align it with what we have in the osh-infra
repo.

Change-Id: I3585fdc6663b2ae7bfb5c1d8a13672ac3055bf86
2025-03-12 22:59:57 -05:00

34 lines
609 B
Plaintext

---
yaml-files:
- '*.yaml'
- '*.yml'
- '.yamllint'
rules:
braces: enable
brackets: enable
colons: enable
commas: enable
comments: enable
comments-indentation: disable
document-end: enable
document-start: enable
empty-lines: enable
empty-values: disable
hyphens:
ignore: .yamllint/zuul.d/jobs.yaml
indentation:
spaces: 2
indent-sequences: whatever
key-duplicates: enable
key-ordering: disable
line-length: disable
new-line-at-end-of-file: enable
new-lines: enable
octal-values: disable
quoted-strings: disable
trailing-spaces: enable
truthy: disable
...