-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.ansible-lint
34 lines (33 loc) · 841 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
---
exclude_paths:
- ./report/
- ./requirements.yml
- ./.travis.yml
- ./playbooks/group_vars/all/vault.yml
- ./docker/
- ./roles/Stouts.python/
- .gitlab-ci.yml
# parseable: true
# quiet: true
# rulesdir:
# - ./rule/directory/
skip_list:
- '602' # See https://github.com/ansible/ansible-lint/issues/457
- '204'
- '503'
- '208' # File permissions not mentioned
- filenotfounderror
- 'fqcn-builtins'
# - skip_this_tag
# - and_this_one_too
# - skip_this_id
# tags:
# - run_this_tag
warn_list: # or 'skip_list' to silence them completely
- yaml # Violations reported by yamllint
- var-spacing # Jinja2 variables and filters should have spaces before and after.
# - syntax-check[specific]
use_default_rules: true
# verbosity: 1
# Offline mode disables installation of requirements.yml
offline: true