46be1e020a
Enabling yamllint for the ansible playbook .yml files. Modified the default yamllint configuration to ignore some minor issues so yamllint will pass. Made some very basic formatting changes to the playbook files to address basic warnings/errors and get the maximum line length to 125 characters. Change-Id: I3b6adf77025dceeb168222ff154a98178d2bb7aa Story: 2004695 Task: 34286 Signed-off-by: Bart Wensley <barton.wensley@windriver.com>
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
extends: default
|
|
|
|
rules:
|
|
braces:
|
|
min-spaces-inside: 1
|
|
max-spaces-inside: 1
|
|
indentation:
|
|
indent-sequences: whatever
|
|
line-length:
|
|
max: 125
|
|
truthy:
|
|
allowed-values: ['true', 'false', 'yes', 'no']
|