-
Notifications
You must be signed in to change notification settings - Fork 107
/
.ansible-lint
57 lines (49 loc) · 1.05 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
52
53
54
55
56
57
##########################
##########################
## Ansible Linter rules ##
##########################
##########################
#############################
# Exclude paths from linter #
#############################
#exclude_paths:
########################
# Make output parsable #
########################
parseable: true
#######################
# Set output to quiet #
#######################
quiet: true
#####################
# Path to rules dir #
#####################
#rulesdir:
################
# Tags to skip #
# https://ansible-lint.readthedocs.io/en/latest/default_rules.html?highlight=skip_list
################
skip_list:
- empty-string-compare
- role-name
- no-changed-when
- command-instead-of-module
- command-instead-of-shell
- no-handler
- meta-no-info
- package-latest
- fqcn-builtins
- no-jinja-when
- jinja[spacing]
##################
# Tags to follow #
##################
#tags:
#############
# Use rules #
#############
use_default_rules: true
#################
# Set verbosity #
#################
verbosity: 1