1
0
Fork 0
forked from infra/ansible

[distgit] Fixing ansible lint errors

This commit is fixing ansible lint errors for distgit role.

It also introduces two new addition to skip list as the structure of our
ansible repository doesn't adhere to ansible standards.

The errors that will be now skipped are:
- role-name[path] - we have plenty of roles that have sub-roles inside
  them and we need to access them
- var-naming[no-role-prefix] - variables for roles are not usually
  prefixed correctly in our repository and forcing people to change that
  will introduce more issues than what it solves
This commit is contained in:
Michal Konečný 2025-04-30 11:57:57 +02:00 committed by zlopez
commit a0046b5b4b
3 changed files with 167 additions and 93 deletions

View file

@ -64,3 +64,5 @@ kinds:
skip_list:
- yaml
- role-name[path]
- var-naming[no-role-prefix]