From 36079da322e629c6377e2deda1737bf788c56b73 Mon Sep 17 00:00:00 2001 From: Kristian Klausen Date: Sun, 14 Feb 2021 12:21:56 +0100 Subject: [PATCH] ansible-lint: Replace numeric rule identifiers with text ones --- .ansible-lint | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ansible-lint b/.ansible-lint index 78ceffb1..2bbf0a1c 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -4,8 +4,8 @@ skip_list: # line too long (x > 80 characters) (line-length) - 'line-length' # Do not recommend running tasks as handlers - - '503' + - 'no-handler' # Do not force galaxy info in meta/main.yml - - '701' + - 'meta-no-info' # Allow package versions to be specified as 'latest' - - '403' + - 'package-latest'