diff --git a/tox.ini b/tox.ini index 76dd36f..a6bd091 100644 --- a/tox.ini +++ b/tox.ini @@ -38,8 +38,14 @@ commands = # PEP8 Lint Check flake8 # Ansible Lint Check + # + # 204: Lines < 160 + # Things like keys, script lines, etc exceed this. We have good + # taste and only use long lines where appropriate. + # + # 206: {{var}} should have spaces {{ var }} bash -c "find . -type f -regex '.*.y[a]?ml' ! -path './.tox/*' -print0 | xargs -t -n1 -0 \ - ansible-lint" + ansible-lint -x204 -x 206" # Ansible Syntax Check bash -c "find tests -type f -regex '.*.y[a]?ml' ! -name 'resources.yml' \ -print | xargs -t -n1 \