Made sequence indent consistent

Change-Id: I5ea4232ca4fd6e03d5b5f72eb6704bee84d04ea5
This commit is contained in:
Sorin Sbarnea 2020-05-05 13:32:53 +01:00
parent 263fea0727
commit 4af438d136
10 changed files with 45 additions and 44 deletions

View File

@ -14,7 +14,9 @@ rules:
empty-lines: empty-lines:
max: 1 max: 1
max-end: 2 max-end: 2
indentation: disable indentation:
level: error
indent-sequences: consistent
new-line-at-end-of-file: disable new-line-at-end-of-file: disable
line-length: disable line-length: disable
truthy: false truthy: false

View File

@ -1,6 +1,8 @@
- hosts: all - hosts: all
vars: vars:
tox_molecule_packages: "{{ _tox_molecule_packages | default([]) }}" tox_molecule_packages: "{{ _tox_molecule_packages | default([]) }}"
roles:
- role: ensure-docker
tasks: tasks:
- name: Gather variables for each operating system - name: Gather variables for each operating system
include_vars: "{{ item }}" include_vars: "{{ item }}"
@ -22,6 +24,3 @@
name: "{{ tox_molecule_packages }}" name: "{{ tox_molecule_packages }}"
when: when:
- (tox_molecule_packages | length) > 0 - (tox_molecule_packages | length) > 0
roles:
- role: ensure-docker