-
Notifications
You must be signed in to change notification settings - Fork 7
/
.ansible-lint
52 lines (47 loc) · 984 Bytes
/
.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
52
# .ansible-lint
exclude_paths:
- .cache/
- .github/
- molecule/
- .ansible-lint
- .yamllint
- playbooks/roles/
rulesdir:
- ../../ansible-lint-custom-rules/rules/
enable_list:
- fqcn-builtins # opt-in
- no-log-password # opt-in
warn_list:
- role_vars_start_with_role_name
- vars_in_vars_files_have_valid_names
- experimental
- ignore-errors
- no-handler
- fqcn-builtins
- no-log-password
- jinja[spacing]
- jinja[invalid]
- meta-no-tags
- name[casing]
- fqcn[action]
- no-jinja-nesting
- no-changed-when
- schema[arg_specs]
- schema[meta]
- schema[role-arg-spec]
- galaxy[version-incorrect]
- risky-file-permissions
- var-naming[no-role-prefix]
- name[play]
- key-order[task]
- schema[tasks]
- name[missing]
- meta-runtime[unsupported-version]
- fqcn[keyword]
skip_list:
- vars_should_not_be_used
- file_is_small_enough
- name[template]
- task_has_valid_name
use_default_rules: true
parseable: true