2021-02-17 08:32:40 -05:00
|
|
|
---
|
2019-10-21 12:05:55 -04:00
|
|
|
##########################
|
|
|
|
##########################
|
|
|
|
## Ansible Linter rules ##
|
|
|
|
##########################
|
|
|
|
##########################
|
|
|
|
|
|
|
|
#############################
|
|
|
|
# Exclude paths from linter #
|
|
|
|
#############################
|
2022-01-06 10:59:15 -05:00
|
|
|
# exclude_paths:
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
########################
|
|
|
|
# Make output parsable #
|
|
|
|
########################
|
|
|
|
parseable: true
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# Set output to quiet #
|
|
|
|
#######################
|
|
|
|
quiet: true
|
|
|
|
|
|
|
|
#####################
|
|
|
|
# Path to rules dir #
|
|
|
|
#####################
|
2022-01-06 10:59:15 -05:00
|
|
|
# rulesdir:
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
################
|
|
|
|
# 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
|
2022-05-23 14:26:07 -04:00
|
|
|
- 'unnamed-task' # Allow tasks without a name
|
2022-09-29 05:05:04 -04:00
|
|
|
- 'yaml' # Disable YAML linting since it's done by yamllint
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
##################
|
|
|
|
# Tags to follow #
|
|
|
|
##################
|
2022-01-06 10:59:15 -05:00
|
|
|
# tags:
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
#############
|
|
|
|
# Use rules #
|
|
|
|
#############
|
|
|
|
use_default_rules: true
|
|
|
|
|
|
|
|
#################
|
|
|
|
# Set verbosity #
|
|
|
|
#################
|
|
|
|
verbosity: 1
|