From 32f1b6cf56f3e9678b909e0f7ca3922c3bc44f79 Mon Sep 17 00:00:00 2001 From: Mark Goddard <mark@stackhpc.com> Date: Thu, 11 Mar 2021 09:10:16 +0000 Subject: [PATCH] ansible-lint: add unnamed-task to the skip list The 5.0.3 release of ansible-lint makes the linters job fail, due to the addition of an unnamed-task rule. We have quite a large number of unnamed tasks, typically include_tasks or include_role. We may want to address this at some point, but not right now. Change-Id: I4ee706fe2463d62e4e16412117d4373748ea43e3 --- .ansible-lint | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ansible-lint b/.ansible-lint index 65ea9f6ef4..a7f4223b7b 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -15,3 +15,6 @@ skip_list: # [E208] permissions not mentioned # FIXME(mnasiadka): Rework file/template to include permissions - '208' +# [unnamed-task] All tasks should be named +# FIXME(mgoddard): Add names to all tasks + - unnamed-task