From ca247182dffe56a034c8220d745433e52c4f3684 Mon Sep 17 00:00:00 2001 From: Yanis Guenane Date: Sat, 30 Nov 2019 19:43:23 +0100 Subject: yamllint: Make all files in awx pass yamllint This commit updates all files that weren't passing yamllint for them to pass. A new yamllint target has been added. One can run `tox -e yamllint` or `yamllint -s .` locally to ensure yaml files are still passing. This check will be enabled in the CI so it can get on every new contributions, and prevent merging non-compliant code. Signed-off-by: Yanis Guenane --- .yamllint | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .yamllint (limited to '.yamllint') diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000000..11c769cff1 --- /dev/null +++ b/.yamllint @@ -0,0 +1,12 @@ +--- +ignore: | + .tox + awx/main/tests/data/inventory/plugins/** + # vault files + awx/main/tests/data/ansible_utils/playbooks/valid/vault.yml + awx/ui/test/e2e/tests/smoke-vars.yml + +extends: default + +rules: + line-length: disable -- cgit v1.2.3