openclaw-ansible/.yamllint
sheeek 896310c28e Fix all linting errors
- Add FQCN (ansible.builtin.*) to all builtin modules
- Remove trailing spaces from all YAML files
- Fix line length issues (split long lines)
- Add pipefail to all shell commands with pipes
- Change shell to command where appropriate
- Fix handler name capitalization
- Add .ansible-lint config to skip intentional patterns
- Update .yamllint with octal-values rules
- Remove invalid become_method: sudo
2026-01-08 18:09:35 +01:00

29 lines
483 B
Plaintext

---
extends: default
rules:
line-length:
max: 120
level: warning
indentation:
spaces: 2
indent-sequences: true
truthy:
allowed-values: ['true', 'false']
check-keys: false
comments:
min-spaces-from-content: 1
comments-indentation: false
document-start: disable
braces:
max-spaces-inside: 1
brackets:
max-spaces-inside: 1
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true
ignore: |
.github/
venv/