mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 01:35:53 -05:00
26 lines
671 B
YAML
26 lines
671 B
YAML
---
|
|
########################
|
|
# Make output parsable #
|
|
########################
|
|
parseable: true
|
|
|
|
################
|
|
# Tags to skip #
|
|
################
|
|
skip_list:
|
|
- '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
|
|
|
|
#############
|
|
# Use rules #
|
|
#############
|
|
use_default_rules: true
|
|
|
|
#################
|
|
# Set verbosity #
|
|
#################
|
|
verbosity: 2
|