-
I have skip_list:
- load-failure and the following - repo: https://github.com/ansible-community/ansible-lint
rev: v5.1.2
hooks:
- id: ansible-lint
args: ['-x', 'load-failure'] I still can't suppress 9 fatal errors in my repo on running
Having - import_tasks: "{{ playbook_dir }}/common/add-artifactory-repos.yaml" # noqa load-failure Please advise. |
Beta Was this translation helpful? Give feedback.
Answered by
zaufi
Aug 5, 2021
Replies: 1 comment
-
Resolved by using full module name |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zaufi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Resolved by using full module name
import_tasks
→ansible.builtin.import_tasks
and addingname
for the task %)