forked from rug-cit-hpc/league-of-robots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ansible-lint
16 lines (16 loc) · 789 Bytes
/
.ansible-lint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
exclude_paths:
- '~/.ansible' # Exclude external playbooks.
skip_list:
# We explicitly use latest combined with other tech to pin versions (e.g. Pulp).
- 'package-latest' # "Package installs should not use latest (403)."
- 'meta-no-info' # "No 'galaxy_info' found in meta/main.yml of a role (701)."
- 'experimental' # All rules tagged as experimental.
- 'name[template]' # Allow jinja templating anywhere in a task name.
- 'var-naming[no-role-prefix]' # Temporarily disable this new check: will be fixed in a dedicated PR.
#
# https://github.com/ansible/ansible-lint/issues/4035
# https://github.com/ansible/ansible-lint/issues/4168
#
- 'name[casing]' # Temporarily disable this new check: bug causes false positive errors when handler uses 'listen'.
...