diff --git a/.ansible-lint b/.ansible-lint index 3930362..327db43 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,10 +1,25 @@ +# vim:filetype=yaml # https://ansible-lint.readthedocs.io/en/latest/configuring.html skip_list: - - yaml # clashes with prettier - - package-latest # I DO WANT TO UPGRADE PACKAGES!!! + # clashes with prettier + - yaml + + # I DO WANT TO UPGRADE PACKAGES!!! + - package-latest + + # I want the latest… + - latest[git] + + # I want some directory structure to this… + - role-name[path] warn_list: - - command-instead-of-module # sometimes this is desired - - fqcn[action] # htpasswd -> community.general.web_infrastructure.htpasswd - - args[module] # false positive: Unsupported parameters for k8s module + # sometimes this is desired + - command-instead-of-module + + # htpasswd -> community.general.web_infrastructure.htpasswd + - fqcn[action] + + # false positive: Unsupported parameters for k8s module + - args[module]