1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-12 09:26:02 +02:00
infrastructure/.ansible-lint
Evangelos Foutras 610b08d940
lint: allow free-form module calling syntax
This format is too pervasive in our infra code, no way we're fixing all
824 instances. (At least not without a notably increased snack budget.)
2022-10-07 11:32:09 +03:00

21 lines
721 B
Plaintext

exclude_paths:
- misc
# FIXME: parser-error: couldn't resolve module/action 'hosts'. This often indicates a misspelling, missing collection, or incorrect module path.
- playbooks/tasks
- roles/prometheus/files/node.rules.yml
skip_list:
# yaml: line too long (x > 160 characters) (yaml[line-length])
- yaml[line-length]
# yaml: too many spaces inside braces (yaml[braces])
- yaml[braces]
# Do not recommend running tasks as handlers
- no-handler
# Do not force galaxy info in meta/main.yml
- meta-no-info
# Allow package versions to be specified as 'latest'
- package-latest
# Don't require fully-qualified collection names
- fqcn
# Allow free-form module calling syntax
- no-free-form