Work around new ansible lint errors.

For the reasons inline.  Inspired by
I0fdd4a79b886d1c4875e748b08f99da809d9d767

Change-Id: I11f78ac0ede9a36e2c9e4abdc9763c0843028387
This commit is contained in:
Ian Wienand 2020-08-20 12:55:46 +10:00
parent 4798390909
commit c20b778cc1

View File

@ -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'