browbeat/.ansible-lint
Charles Short c335d6439b Fix tox.ini
- Fix ansible-lint tox environment to run on python3.
- Ignore '306' lint check
- Remove python36, python35, only test on python37 (standard)

Change-Id: I75000b21dc4562d443e41ac93473a152acb53fe4
Signed-off-by: Charles Short <chucks@redhat.com>
2019-10-29 10:29:32 -04:00

17 lines
430 B
Plaintext

---
parseable: true
skip_list:
- '204' # [E204] Lines should be no longer than 120 chars
- '206' # [E206] Variables should have spaces before and after: {{ var_name }}
- '306'
- '405'
- '503' # [E503] Tasks that run when changed should likely be handlers
- '504'
- '602' # [E602] Don't compare to empty string
- ANSIBLE0006
- ANSIBLE0007
- ANSIBLE0012
exclude_paths:
- .zuul.yaml
use_default_rules: true