Looked at the first three or five warnings, and those all look sane. The linter seems to be overly picky here. ansible-lint is happy about yaml now: % ansible-lint -t yaml Passed with production profile: 0 failure(s), 0 warning(s) on 142 files. Link: https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.comments_indentation
12 lines
172 B
Text
12 lines
172 B
Text
---
|
|
extends: default
|
|
|
|
rules:
|
|
comments-indentation: disable
|
|
line-length: disable
|
|
truthy:
|
|
allowed-values:
|
|
- 'true'
|
|
- 'false'
|
|
- 'yes'
|
|
- 'no'
|