Skip to content
Snippets Groups Projects
Verified Commit 26ad4106 authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

Adjust skip_list for ansible-lint 6.2.0 yaml rules

The "line-length" and "braces" rules are now named "yaml[line-length]"
and "yaml[braces]" respectively.

https://github.com/ansible/ansible-lint/pull/2148
parent 656fc4bb
No related branches found
No related tags found
No related merge requests found
Pipeline #19105 passed
......@@ -4,10 +4,10 @@ exclude_paths:
- playbooks/tasks
- roles/prometheus/files/node.rules.yml
skip_list:
# line too long (x > 80 characters) (line-length)
- 'line-length'
# yaml: too many spaces inside braces (braces)
- 'braces'
# yaml: line too long (x > 160 characters) (yaml[line-length])
- yaml[line-length]
# yaml: too many spaces inside braces (yaml[braces])
- yaml[braces]
# Do not recommend running tasks as handlers
- 'no-handler'
# Do not force galaxy info in meta/main.yml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment