From 33a59e842777d8a9fcbd5505859a3ccd13bb2358 Mon Sep 17 00:00:00 2001 From: Daniel Akulenok Date: Thu, 29 Jan 2026 21:24:26 +0100 Subject: [PATCH] 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. --- .yamllint | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.yamllint b/.yamllint index 69b5da2..6e46742 100644 --- a/.yamllint +++ b/.yamllint @@ -5,26 +5,30 @@ rules: line-length: max: 160 level: warning - + comments: min-spaces-from-content: 1 - + indentation: spaces: 2 indent-sequences: true - + truthy: - allowed-values: ['true', 'false', 'yes', 'no'] + 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/