2021-02-17 08:32:40 -05:00
|
|
|
---
|
2019-10-21 10:12:50 -04:00
|
|
|
########################
|
|
|
|
# Make output parsable #
|
|
|
|
########################
|
|
|
|
parseable: true
|
|
|
|
|
|
|
|
################
|
|
|
|
# Tags to skip #
|
|
|
|
################
|
|
|
|
skip_list:
|
2022-01-06 10:59:15 -05:00
|
|
|
- 'empty-string-compare' # Allow compare to empty string
|
|
|
|
- '204' # Allow string length greater than 160 chars
|
|
|
|
- 'no-changed-when' # False positives for running command shells
|
|
|
|
- 'command-instead-of-module' # Allow git commands for push, add, etc...
|
|
|
|
- 'command-instead-of-shell' # Allow use of shell when you want
|
|
|
|
- 'no-handler' # Allow step to run like handler
|
2019-10-21 10:12:50 -04:00
|
|
|
|
|
|
|
#############
|
|
|
|
# Use rules #
|
|
|
|
#############
|
|
|
|
use_default_rules: true
|
|
|
|
|
|
|
|
#################
|
|
|
|
# Set verbosity #
|
|
|
|
#################
|
2022-03-14 15:47:04 -04:00
|
|
|
verbosity: 2
|