jokjr
jokjr
While full blown type inference may not be feasible, it should be quite doable to catch at least some basic things, like: ``` selectattr | length ``` Where Ansible will...
As [documented](https://docs.ansible.com/ansible/latest/user_guide/become.html#become-directives) `become_user: foo` or `become_flags: .....` without `become:` has no effect and we should raise it as an issue when encountered.
For example: ```yaml - name: copy template template: src: /foo dest: /bar/ register: did_copy ``` instead of ```yaml - name: copy template template: src: /foo dest: /bar/ register: did_copy ```