lint: add ansible-lint configuration with skip_list and settings for better output
This commit is contained in:
parent
a0f32789c4
commit
7bc8ea365b
@ -1,4 +1,15 @@
|
||||
---
|
||||
use_default_rules: true
|
||||
parseable: true
|
||||
quiet: true
|
||||
verbosity: 1
|
||||
|
||||
# State that naming for now should be a warning
|
||||
# 106: ansible role name does not conform to pattern [a-z][a-z0-9_]+$
|
||||
warn_list:
|
||||
- '106'
|
||||
- '303'
|
||||
|
||||
# This is for false positives
|
||||
# 504: Do not use 'local_action', use 'delegate_to: localhost'
|
||||
skip_list:
|
||||
- '504'
|
||||
Loading…
Reference in New Issue
Block a user