We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae8941 commit eda1abaCopy full SHA for eda1aba
src/ansiblelint/rules/args.py
@@ -33,6 +33,13 @@
33
"|".join(
34
[
35
r"^parameters are mutually exclusive:",
36
+ # https://github.com/ansible/ansible-lint/issues/3128 as strings can be jinja
37
+ # Do not remove unless you manually test if the original example
38
+ # from the bug does not trigger the rule anymore. We were not able
39
+ # to add a regression test because it would involve installing this
40
+ # collection. Attempts to reproduce same bug with other collections
41
+ # failed, even if the message originates from Ansible core.
42
+ r"^unable to evaluate string as dictionary$",
43
]
44
),
45
flags=re.MULTILINE | re.DOTALL,
0 commit comments