Skip to content

Commit

Permalink
Fix ansible-lint test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam committed Feb 6, 2022
1 parent 4d6feb8 commit cb8c598
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .automation/test/ansible/bad/ansible/.ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
##########################
##########################
## Ansible Linter rules ##
##########################
##########################

#############################
# Exclude paths from linter #
#############################
#exclude_paths:

########################
# Make output parsable #
########################
parseable: true

#######################
# Set output to quiet #
#######################
quiet: true

#####################
# Path to rules dir #
#####################
#rulesdir:

################
# Tags to skip #
################
skip_list:
- "602" # Allow compare to empty string
- "204" # Allow string length greater that 160 chars
- "301" # False positives for running command shells
- "303" # Allow git commands for push add, etc...
- "305" # Allow use of shell when you want
- "503" # Allow step to run like handler

##################
# Tags to follow #
##################
#tags:

#############
# Use rules #
#############
use_default_rules: true

#################
# Set verbosity #
#################
verbosity: 1
51 changes: 51 additions & 0 deletions .automation/test/ansible/good/ansible/.ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
##########################
##########################
## Ansible Linter rules ##
##########################
##########################

#############################
# Exclude paths from linter #
#############################
#exclude_paths:

########################
# Make output parsable #
########################
parseable: true

#######################
# Set output to quiet #
#######################
quiet: true

#####################
# Path to rules dir #
#####################
#rulesdir:

################
# Tags to skip #
################
skip_list:
- "602" # Allow compare to empty string
- "204" # Allow string length greater that 160 chars
- "301" # False positives for running command shells
- "303" # Allow git commands for push add, etc...
- "305" # Allow use of shell when you want
- "503" # Allow step to run like handler

##################
# Tags to follow #
##################
#tags:

#############
# Use rules #
#############
use_default_rules: true

#################
# Set verbosity #
#################
verbosity: 1

0 comments on commit cb8c598

Please sign in to comment.