-
Notifications
You must be signed in to change notification settings - Fork 15
/
.ansible-lint
51 lines (38 loc) · 1.21 KB
/
.ansible-lint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
# Collection wide lint-file
# DO NOT CHANGE
exclude_paths:
- .cache/
- .github/
#- docs/
#- roles/sap_vm_provision
enable_list:
- yaml
skip_list:
# We don't want to enforce new Ansible versions for Galaxy:
- meta-runtime[unsupported-version]
# We do not want to use checks which are marked as experimental:
- experimental
# # We use ignore_errors for all the assert tasks, which should be acceptable:
# - ignore-errors
# # We want to allow single digit version numbers in a role's meta/main.yml file:
# - schema
# Allow templating inside name because it creates more detailed output:
- name[template]
# Duplicates correct in editable file /optional/ansible_extravars_noninteractive.yml
- yaml[key-duplicates]
# Used for /etc/hosts edits
- no-tabs
# Incorrectly shows error for nested {%- endfor -%} already correct idententation
- jinja[spacing]
# Shell commands are required
- no-changed-when
- command-instead-of-shell
# Prettify problems
- yaml[comments]
- yaml[line-length]
- yaml[empty-lines]
# Ignore ha_cluster vars used within sap_ha_pacemaker_cluster
- var-naming[no-role-prefix]
# Ignore dynamic variable population for Scale-Out
- var-naming[no-jinja]