Disable YAML linting in ansible-lint (#3370)

Ansible Lint's YAML linting is not needed since super-linter
already contains yamllint.
This commit is contained in:
Aki Kanellis 2022-09-29 10:05:04 +01:00 committed by GitHub
parent c266045e2b
commit 004ddc5158
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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