ansible-review icon indicating copy to clipboard operation
ansible-review copied to clipboard

Results 38 ansible-review issues
Sort by recently updated
recently updated
newest added

Python 2.7.12 pip freeze (fragment): ```text ansible==2.2.1.0 ansible-lint==3.4.13 ansible-review==0.13.0 ``` source yaml: ```yaml - name: This code will fail because 'port' is not wrapped in double quotes wait_for: host: "{{...

bug

example main.yaml: ```yaml - when: ansible_distribution_release == 'xenial' block: ``` output - no error. ansible shows somethig way different: ```bash ERROR! A malformed block was encountered. The error appears to...

enhancement

Add & implement the following options, both on the command line and in the config: ``` --output_info: Where to output INFO messages: stdout|stderr --output_warn: Where to output WARN messages: stdout|stderr...

According to both YAML documentation and Ansible YAML syntax (http://docs.ansible.com/ansible/YAMLSyntax.html), the indentation that gets checked with the function files_should_be_indented is incorrect. A warning is thrown if I have indentation at...

If you point `asible-review` at this YAML file (or presumably any broken/invalid YAML file): ```yaml test: [one, two] three, four] ``` you get the error message form `pyaml` and `ansible-review`...

Currently ansible-review will fail if we run the standard flake8 check on powershell files. As there is no standard set right now for how to handle PS scripts I am...

If I let `ansible-review` process my `group_vars` files, I get messages like this in the output: ``` WARN: Best practice "Same variable defined in siblings" not met: ansible/group_vars/test.yml:Inventory is broken:...

Firstly, many thanks for this great tool. I'm running ansible-review using the supplied example/standards.py against a role which contains some stub yml files which contain no tasks (yet). When ansible-review...