ci: reformat ansible-lint config
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
78e9dbc452
commit
61980438fa
1 changed files with 20 additions and 5 deletions
|
@ -1,10 +1,25 @@
|
||||||
|
# vim:filetype=yaml
|
||||||
# https://ansible-lint.readthedocs.io/en/latest/configuring.html
|
# https://ansible-lint.readthedocs.io/en/latest/configuring.html
|
||||||
|
|
||||||
skip_list:
|
skip_list:
|
||||||
- yaml # clashes with prettier
|
# clashes with prettier
|
||||||
- package-latest # I DO WANT TO UPGRADE PACKAGES!!!
|
- 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:
|
warn_list:
|
||||||
- command-instead-of-module # sometimes this is desired
|
# sometimes this is desired
|
||||||
- fqcn[action] # htpasswd -> community.general.web_infrastructure.htpasswd
|
- command-instead-of-module
|
||||||
- args[module] # false positive: Unsupported parameters for k8s module
|
|
||||||
|
# htpasswd -> community.general.web_infrastructure.htpasswd
|
||||||
|
- fqcn[action]
|
||||||
|
|
||||||
|
# false positive: Unsupported parameters for k8s module
|
||||||
|
- args[module]
|
||||||
|
|
Loading…
Reference in a new issue