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
This commit is contained in:
James E. Blair 2020-06-30 16:18:59 -07:00
parent 62fd612dc5
commit 8501cc23fc
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ exclude_paths:
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: