-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ansible-lint
32 lines (26 loc) · 960 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
profile: 'production'
# exclude_paths included in this file are parsed relative to this file's location
# and not relative to the CWD of execution. CLI arguments passed to the --exclude
# option are parsed relative to the CWD of execution.
exclude_paths:
- roles/geerlingguy*
# Enforce variable names to follow pattern below, in addition to Ansible own
# requirements, like avoiding python identifiers. To disable add `var-naming`
# to skip_list.
var_naming_pattern: "^[a-z_][a-z0-9_]*$"
# Use the default rules included with ansible-lint.
use_default_rules: true
skip_list:
- 'role-name'
# Ansible-lint does not automatically load rules that have the 'opt-in' tag.
# You must enable opt-in rules by listing each rule 'id' below.
enable_list:
- 'args'
- 'empty-string-compare'
- 'no-log-password'
- 'no-same-owner'
# Ansible-lint does not fail on warnings from the rules or tags listed below
warn_list:
- 'experimental'