- name: Hello world hosts: localhost connection: local become: false gather_facts: false tasks: - name: Say Hello world ansible.builtin.debug: msg: Hello world! - name: This should generate a syntax error but pass ansible-lint ansible.builtin.debug: mg: "this is incorrect, and should be `msg` instead!"