From 004ddc5158cb27d662b758c47d4e71ea6a1f827d Mon Sep 17 00:00:00 2001 From: Aki Kanellis Date: Thu, 29 Sep 2022 10:05:04 +0100 Subject: [PATCH] Disable YAML linting in ansible-lint (#3370) Ansible Lint's YAML linting is not needed since super-linter already contains yamllint. --- TEMPLATES/.ansible-lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/TEMPLATES/.ansible-lint.yml b/TEMPLATES/.ansible-lint.yml index 32b88d5e..f2c7b9e7 100644 --- a/TEMPLATES/.ansible-lint.yml +++ b/TEMPLATES/.ansible-lint.yml @@ -36,6 +36,7 @@ skip_list: - 'command-instead-of-shell' # Allow use of shell when you want - 'no-handler' # Allow step to run like handler - 'unnamed-task' # Allow tasks without a name + - 'yaml' # Disable YAML linting since it's done by yamllint ################## # Tags to follow #