forked from openstack/bifrost
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.ansible-lint
31 lines (30 loc) · 1.65 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
skip_list:
# FIXME: gradually fix and remove these exclusions:
- fqcn[action] # Use FQCN for module actions
- fqcn[action-core] # Use FQCN for builtin actions
- ignore-errors # Use failed_when and specify error conditions instead of using ignore_errors
- jinja[invalid] # Unrecognized type
- key-order[task] # You can improve the task key order
- meta-no-info # meta/main.yml should contain relevant info
- meta-no-tags # Tags must contain lowercase letters and digits only
- name[casing] #All names should start with an uppercase letter
- name[missing] # All tasks should be named
- name[play] # All plays should be named
- name[template] # Jinja templates should only be at the end of 'name'
- no-changed-when # Commands should not change things if nothing needs doing
- no-free-form # Avoid using free-form when calling module actions
- risky-file-permissions # File permissions unset or incorrect
- schema[meta] # Additional properties are not allowed
- schema[vars] # does not match any of the regexes
- var-naming # violates variable naming standards
- yaml[comments] # Missing starting space in comment
- yaml[empty-lines] # Too many blank lines
- yaml[indentation] # Wrong indentation
- yaml[line-length] # Line too long
- yaml[octal-values] # Forbidden implicit octal value
- yaml[truthy] # Truthy value should be one of [false, true]
# NOTE(dtantsur): the following rules should likely stay excluded:
- experimental
- role-name # Role name {} does not match ``^[a-z][a-z0-9_]+$`` pattern'
- package-latest # Package installs should not use latest
- no-handler # Tasks that run when changed should likely be handlers