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

This: ``` - name: Template Mcrouter config template: src: mcrouter-config.json.j2 dest: /etc/mcrouter/mcrouter-config.json owner: mcrouter group: mcrouter mode: 0755 tags: - mcrouter-config ``` becomes: ``` {'delegate_to': None, 'name': 'Template Mcrouter config',...

I created a little script to wrap `ansible-review` and post-process the output. This was harder than it might have been, for two reasons: 1. `ansible-review` splits the output for some...

Look at https://pypi.org/project/ansible-review/#description, it shows: ```text Project description The author of this package has not provided a project description ``` This probably means that you use outdated setuptools when building...

This is a new feature with Ansible 2.6. More information regarding it can be found here: https://github.com/ansible/ansible/pull/36357 Currently, an `IOError` is raised. ``` Traceback (most recent call last): File "/usr/local/bin/ansible-review",...

Looking at the some of the rules e.g. https://github.com/willthames/ansible-review/blob/master/lib/ansiblereview/examples/lint-rules/MetaMainHasInfoRule.py it would appear you might be able to limit the scope of rules to run to certain tags. Is this correct...

Currently it isn't possible to provide one or more directories and to run through the whole directory tree to test every Ansible's file. It would be a nice addition to...

Since #15 remains open, I'd like to disable the `files_should_be_indented` standard in my codebase. How can I do this?

Since these can be used in playbooks/roles alongside other tasks I think it makes sense to treat them as such for linting. If I add a name to an import...

Regarding "WARN: Couldn't classify file", quick look at `candidate = classify(filename)` and `classify` function make's me understand that if a file is not classified in the classify it's determined as...

When this rule runs on an inventory file, it fails with the following traceback: ``` Traceback (most recent call last): File "/home/pmacarth/.local/bin/ansible-review", line 11, in load_entry_point('ansible-review==0.13.4', 'console_scripts', 'ansible-review')() File "/home/pmacarth/.local/lib/python2.7/site-packages/ansiblereview/__main__.py",...

bug