chore(config): update collection metadata and linting rules
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.
This commit is contained in:
18
.yamllint
18
.yamllint
@@ -5,26 +5,30 @@ rules:
|
|||||||
line-length:
|
line-length:
|
||||||
max: 160
|
max: 160
|
||||||
level: warning
|
level: warning
|
||||||
|
|
||||||
comments:
|
comments:
|
||||||
min-spaces-from-content: 1
|
min-spaces-from-content: 1
|
||||||
|
|
||||||
indentation:
|
indentation:
|
||||||
spaces: 2
|
spaces: 2
|
||||||
indent-sequences: true
|
indent-sequences: true
|
||||||
|
|
||||||
truthy:
|
truthy:
|
||||||
allowed-values: ['true', 'false', 'yes', 'no']
|
allowed-values: ['true', 'false']
|
||||||
check-keys: false
|
check-keys: false
|
||||||
|
|
||||||
braces:
|
braces:
|
||||||
max-spaces-inside: 1
|
max-spaces-inside: 1
|
||||||
|
|
||||||
brackets:
|
brackets:
|
||||||
max-spaces-inside: 1
|
max-spaces-inside: 1
|
||||||
|
|
||||||
comments-indentation: disable
|
comments-indentation: disable
|
||||||
|
|
||||||
|
octal-values:
|
||||||
|
forbid-implicit-octal: true
|
||||||
|
forbid-explicit-octal: true
|
||||||
|
|
||||||
ignore: |
|
ignore: |
|
||||||
.gitignore
|
.gitignore
|
||||||
changelogs/
|
changelogs/
|
||||||
|
|||||||
Reference in New Issue
Block a user