Skip more ansible-lint style checks

And add "jinja[invalid]" to warnings as its behaviour is not really
predictable...

Change-Id: Ic0603edec71828c87cde17bdd68c3d5f91385405
This commit is contained in:
Radosław Piliszek 2022-10-25 10:04:16 +02:00
parent 1c0e259c66
commit 3ced4bdb34
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,11 @@
skip_list:
- fqcn-builtins # Use FQCN for builtin actions.
# NOTE(yoctozepto): skip various fqcn and name checks for now to avoid unnecessary big style changes
- fqcn[action-core]
- fqcn[action]
- name[missing]
- name[template]
warn_list:
- no-changed-when
- experimental # all rules tagged as experimental
- jinja[invalid] # NOTE(yoctozepto): it tends to misbehave for no obvious good reason