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

Merge branch 'ansible-6.8.0' into 'master'

lint: add fqcn and no-free-form to skip_list for ansible-lint 6.8.0

See merge request !635
parents 17e8ab15 610b08d9
No related branches found
No related tags found
1 merge request!635lint: add fqcn and no-free-form to skip_list for ansible-lint 6.8.0
Pipeline #32819 passed
......@@ -9,10 +9,12 @@ skip_list:
# yaml: too many spaces inside braces (yaml[braces])
- yaml[braces]
# Do not recommend running tasks as handlers
- 'no-handler'
- no-handler
# Do not force galaxy info in meta/main.yml
- 'meta-no-info'
- meta-no-info
# Allow package versions to be specified as 'latest'
- 'package-latest'
# Don't require FQCN for builtin actions
- 'fqcn-builtins'
- package-latest
# Don't require fully-qualified collection names
- fqcn
# Allow free-form module calling syntax
- no-free-form
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