af40f9ff8e
- remove role name rule as is included in newer versions - added .cache folder to git ignore (used by linter) - enabled optional yamllint run on ansible-lint - assured repository has a valid root requirements.yml (so linter can make use of it) - assured that we do not mix playbooks with non playbooks inside same folders - renamed undocumented "role" argument received by import_role to official "name". - added mocked roles/modules to avoid linter errors (ideally they should be provided by requiremetns.yml). Change-Id: I14b855f8a15afccaf4973e2a612aa7e9eae3bfa5
42 lines
359 B
Plaintext
42 lines
359 B
Plaintext
*.py[cod]
|
|
|
|
# Testing cruft
|
|
.tox
|
|
.venv
|
|
*.egg*
|
|
egg
|
|
.coverage
|
|
cover
|
|
.tox
|
|
nosetests.xml
|
|
.testrepository
|
|
.venv
|
|
.stestr
|
|
tripleo_ansible.egg-info/
|
|
__pycache__
|
|
build
|
|
|
|
# Editors
|
|
*~
|
|
.*.swp
|
|
.*sw?
|
|
|
|
# Playbook retry files
|
|
*.retry
|
|
|
|
# roles
|
|
tripleo_ansible/roles.galaxy/*
|
|
|
|
# Sphinx
|
|
doc/build
|
|
|
|
ansible-errors.json
|
|
pytestdebug.log
|
|
|
|
# doc
|
|
doc/build/*
|
|
|
|
# JetBrain
|
|
.idea/
|
|
.cache
|