Hello,
just an annoying note… I see that ansible-lint --fix
provides this change:
when:
- - ansible_os_family == 'RedHat' or
- ansible_os_family == 'Debian' or
- ansible_os_family == 'Windows'
+ - ansible_os_family == 'RedHat' or ansible_os_family == 'Debian' or ansible_os_family == 'Windows'
Not very important, I just leave this as an hint. If I have a long expression, it could be better to leave the line break after each comparison operator. It’s more readable for me.
Thank you and thank you very much for maintain ansible-lint!
Marco