galaxy.yml: - Removed ansible-creator initialization comment - Updated repository URL to GitHub reference - Updated documentation URL to Ansible docs - Updated homepage and issues URLs meta/runtime.yml: - Verified requires_ansible: >=2.15.0 .yamllint: - Added octal-values validation rules - Updated truthy validation (only true/false) - Maintained consistent formatting rules These changes ensure compliance with Ansible collection standards.
36 lines
490 B
Plaintext
36 lines
490 B
Plaintext
---
|
|
extends: default
|
|
|
|
rules:
|
|
line-length:
|
|
max: 160
|
|
level: warning
|
|
|
|
comments:
|
|
min-spaces-from-content: 1
|
|
|
|
indentation:
|
|
spaces: 2
|
|
indent-sequences: true
|
|
|
|
truthy:
|
|
allowed-values: ['true', 'false']
|
|
check-keys: false
|
|
|
|
braces:
|
|
max-spaces-inside: 1
|
|
|
|
brackets:
|
|
max-spaces-inside: 1
|
|
|
|
comments-indentation: disable
|
|
|
|
octal-values:
|
|
forbid-implicit-octal: true
|
|
forbid-explicit-octal: true
|
|
|
|
ignore: |
|
|
.gitignore
|
|
changelogs/
|
|
tests/output/
|