diff --git a/.ansible-lint b/.ansible-lint index 61a658373b..e02cde65f6 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -21,6 +21,12 @@ parseable: true # 503: tasks that run when "changed" should likely be handlers # We can trust reviewers to decide if something should be a # generic handler or not. +# +# 106: Role name does not match ``^[a-z][a-z0-9_]+$`` pattern +# These aren't collections so this doesn't matter +# +# 208: file permissions not mentioned, re-evaluate after +# https://github.com/ansible/ansible-lint/pull/949 skip_list: - ANSIBLE0004 - ANSIBLE0006 @@ -30,6 +36,8 @@ skip_list: - ANSIBLE0012 - ANSIBLE0013 - ANSIBLE0015 + - '106' + - '208' - '204' - '206' - '304'