zuul-jobs/.ansible-lint
James E. Blair 8501cc23fc Ignore ansible lint E106
E106 rejects roles with '-' in their names, which is important
for collections, but these aren't collections.

https://docs.ansible.com/ansible/devel/dev_guide/developing_collections.html#roles-directory

Change-Id: I48f837e8d5bd7d0d9d708d728d93627deb4093cc
2020-06-30 16:18:59 -07:00

13 lines
372 B
Plaintext

exclude_paths:
- test-playbooks/ # TODO(ssbarnea): remove skip in follow-up
parseable: true
quiet: false
skip_list:
- '106' # Role name does not match ``^[a-z][a-z0-9_]+$`` pattern
- '204' # Lines should be no longer than 160 chars
- '301' # Commands should not change things if nothing needs doing
rulesdir:
- ./.rules/
use_default_rules: true
verbosity: 1