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

Currently when we use the pre-commit hook with `ansible-review` and set the `verbose` option on the hook definition in the `.pre-commit-config.yaml` file the `ansible-review` tool does not react to this...

`ansible-review` should be able to detect configuration rules by looking inside current code directory, just like any other build and linting tools pep8, flake8, tox. Having a user specific config...

Using `ansible-review` version `v0.14.0rc2`. The output of ansible-review when you run the command in the pre-commit hook is different from `yamllint` for example. I am not sure if there even...

When passing var files to `ansible-review` which contain inlined vault-encrypted values, like the following: ``` password: !vault | $ANSIBLE_VAULT;1.1;AES256 ... ``` The default standards will throw an error: ``` yaml.constructor.ConstructorError:...

I am trying the new tagged v0.14.0rc1 and even though it seems to fix the original issue with vaulted strings, I hit an issue with providing a custom config file....

We use following to do ansible review only on changes : git diff origin/develop | ansible-review -c tests/ansible-review/config.ini But if one of the changed files is not a yaml file...

I think that the relationship between ansible-review and ansible-lint should be explained in the main README, making clear when you may/should want one use or another.

Hi! In my playbook, I use role `spring-boot`, which depends from role `maven-download`, which provides module `maven_download`. Ansible-review fails with error: ``` Couldn't parse task at roles/spring-boot/tasks/extract_artifact.yml:17 (no action detected...

It is common to print smth parseable for the sake of pipe chaining among POSIX utils. However, ansible-review doesn't seem to care about this: ```console ✦ ➜ ansible-review rebuild-world.yml -q...