ansible/.yamllint.yaml

22 lines
408 B
YAML
Raw Normal View History

---
extends: default
rules:
comments:
min-spaces-from-content: 1
comments-indentation: false
braces:
max-spaces-inside: 1
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true
indentation:
spaces: 2
indent-sequences: whatever
level: warning
line-length:
max: 100
level: warning
truthy:
allowed-values: ['true', 'false', 'yes', 'no']
...