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
This commit is contained in:
parent
3c5e0f9f28
commit
32f1b6cf56
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user