ansible-lint: Add paths and files to exclude list.

Some YAML files used in the project are not Ansible playbooks and
should not be evaluated by ansible-lint. This change add the paths
and files that should not be evaluated to an exclude list, that
affects linter operations in CI and pre-commit scripts.
This commit is contained in:
Rafael Guterres Jeffman
2021-08-24 10:17:59 -03:00
parent a68fe58ff2
commit 82b5857960

View File

@@ -1,7 +1,14 @@
exclude_paths:
- roles
- .tox
- .venv
- .ansible-freeipa-tests/
- .cache/
- .github/
- .pre-commit-config.yaml
- .tox/
- .venv/
- .yamllint
- molecule/
- tests/azure/
parseable: true