forked from adoptium/infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ansible-lint
18 lines (17 loc) · 964 Bytes
/
.ansible-lint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
skip_list:
- '106' # Role name {} does not match ``^[a-z][a-z0-9_]+$`` pattern
- '204' # Lines should be no longer than 160 chars
- '207' # Nested jinja pattern
- '208' # File permissions unset or incorrect
- '301' # Commands should not change things if nothing needs doing
- '303' # Using command rather than module
- '305' # Use shell only when shell functionality is required
- '306' # Shells that use pipes should set the pipefail option
- '401' # Git checkouts must contain explicit version
- '403' # Package installs should not use latest
- '501' # Become_user requires become to work as expected
- '601' # Don't compare to literal True/False
- '602' # Don't compare to empty string
- 'var-naming' # var-naming File defines variable that violates variable naming standards
exclude_paths:
- ./ansible/playbooks/adoptopenjdk_variables.yml # See: https://github.com/AdoptOpenJDK/openjdk-infrastructure/issues/1926