-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ansible-lint
32 lines (30 loc) · 894 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
---
# .ansible-lint
# Ansible-lint completely ignores rules or tags listed below
# skip_list:
# - skip_this_tag
skip_list:
- fqcn[action-core]
- name[template] # Jinja templates should only be at the end of ‘name’.
- name[play] #All plays should be named.
- var-naming # var-naming File defines variable that violates variable naming standards
- var-spacing # Jinja2 variables and filters should have spaces before and after.
- jinja[spacing]
- no-free-form
- name[missing]
- name[casing]
- role-name[path]
- yaml[line-length] # Line too long (240 > 160 characters)ansible-lint
- risky-file-permissions
- yaml[comments]
- no-relative-paths
- fqcn[action-core]
- risky-shell-pipe
- command-instead-of-shell
- no-changed-when
- command-instead-of-module
- no-handler
- run-once[task]
- ignore-errors
- package-latest
- partial-become[task]