summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/ansible-lint-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ansible-lint-test.sh b/tests/ansible-lint-test.sh
index 6d49076e..d95d45ec 100755
--- a/tests/ansible-lint-test.sh
+++ b/tests/ansible-lint-test.sh
@@ -4,7 +4,7 @@ echo "=> Linting Ansible Code"
fail_ansible=0
for f in `find ../ -name "*.yml"`; do
echo "==> LINTING $f"
- ansible-lint -x ANSIBLE0004 $f # Ignore GIT check
+ ansible-lint -x 504 -x metadata -x reliability -x idiom -x formatting -x ANSIBLE0004 $f # Ignore GIT check
rc=$?
if [[ $rc != 0 ]]; then
echo "==> LINTING FAIL: $f"