From c20b778cc1720791a7c2dc59bcc13b2977718bbe Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 20 Aug 2020 12:55:46 +1000 Subject: [PATCH] Work around new ansible lint errors. For the reasons inline. Inspired by I0fdd4a79b886d1c4875e748b08f99da809d9d767 Change-Id: I11f78ac0ede9a36e2c9e4abdc9763c0843028387 --- .ansible-lint | 8 ++++++++ 1 file changed, 8 insertions(+) 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'