Print linter commands

This commit is contained in:
Marco Ferrari 2020-10-15 16:04:51 +02:00
parent 2a4c89e92f
commit 5e25d5dcae

View file

@ -1176,6 +1176,14 @@ LINTER_COMMANDS_ARRAY['TYPESCRIPT_STANDARD']="standard --parser @typescript-esli
LINTER_COMMANDS_ARRAY['XML']="xmllint"
LINTER_COMMANDS_ARRAY['YAML']="yamllint -c ${YAML_LINTER_RULES}"
debug "--- Linter commands ---"
debug "-----------------------"
for i in "${!LINTER_COMMANDS_ARRAY[@]}"; do
debug "Linter key: $i, command: ${LINTER_COMMANDS_ARRAY[$i]}"
done
debug "---------------------------------------------"
##################################
# Get and print all version info #
##################################