mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
132 lines
5.5 KiB
Bash
Executable file
132 lines
5.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
################################################################################
|
|
################################################################################
|
|
########### Super-Linter (Get the linter versions) @admiralawkbar ##############
|
|
################################################################################
|
|
################################################################################
|
|
|
|
#########################
|
|
# Source Function Files #
|
|
#########################
|
|
# shellcheck source=/dev/null
|
|
source /action/lib/log.sh # Source the function script(s)
|
|
|
|
###########
|
|
# GLOBALS #
|
|
###########
|
|
VERSION_FILE='/action/lib/linter-versions.txt' # File to store linter versions
|
|
ARM_TTK_PSD1='/usr/bin/arm-ttk' # Powershell var
|
|
|
|
#######################################
|
|
# Linter array for information prints #
|
|
#######################################
|
|
LINTER_ARRAY=('ansible-lint' 'arm-ttk' 'asl-validator' 'bash-exec' 'black' 'cfn-lint' 'checkstyle' 'chktex' 'clj-kondo' 'coffeelint'
|
|
'dotnet-format' 'dart' 'dockerfilelint' 'dotenv-linter' 'editorconfig-checker' 'eslint' 'flake8' 'golangci-lint'
|
|
'hadolint' 'htmlhint' 'jsonlint' 'kubeval' 'ktlint' 'lintr' 'lua' 'markdownlint' 'npm-groovy-lint' 'perl' 'protolint'
|
|
'pwsh' 'pylint' 'raku' 'rubocop' 'shellcheck' 'shfmt' 'spectral' 'standard' 'stylelint' 'sql-lint'
|
|
'tekton-lint' 'terrascan' 'tflint' 'xmllint' 'yamllint')
|
|
|
|
################################################################################
|
|
########################## FUNCTIONS BELOW #####################################
|
|
################################################################################
|
|
################################################################################
|
|
#### Function BuildLinterVersions ##############################################
|
|
BuildLinterVersions() {
|
|
#########################
|
|
# Print version headers #
|
|
#########################
|
|
info "---------------------------------------------"
|
|
info "Linter Version Info:"
|
|
|
|
##########################################################
|
|
# Go through the array of linters and print version info #
|
|
##########################################################
|
|
for LINTER in "${LINTER_ARRAY[@]}"; do
|
|
if [ -n "${LINTER}" ]; then
|
|
####################
|
|
# Get the versions #
|
|
####################
|
|
if [[ ${LINTER} == "arm-ttk" ]]; then
|
|
# Need specific command for ARM
|
|
mapfile -t GET_VERSION_CMD < <(grep -iE 'version' "${ARM_TTK_PSD1}" | xargs 2>&1)
|
|
elif [[ ${LINTER} == "protolint" ]] || [[ ${LINTER} == "editorconfig-checker" ]] || [[ ${LINTER} == "bash-exec" ]]; then
|
|
# Need specific command for Protolint and editorconfig-checker
|
|
mapfile -t GET_VERSION_CMD < <(echo "--version not supported")
|
|
elif [[ ${LINTER} == "lintr" ]]; then
|
|
# Need specific command for lintr (--slave is deprecated in R 4.0 and replaced by --no-echo)
|
|
mapfile -t GET_VERSION_CMD < <(R --slave -e "r_ver <- R.Version()\$version.string; \
|
|
lintr_ver <- packageVersion('lintr'); \
|
|
glue::glue('lintr { lintr_ver } on { r_ver }')")
|
|
elif [[ ${LINTER} == "lua" ]]; then
|
|
# Semi standardversion command
|
|
mapfile -t GET_VERSION_CMD < <("${LINTER}" -v 2>&1)
|
|
elif [[ ${LINTER} == "terrascan" ]]; then
|
|
mapfile -t GET_VERSION_CMD < <("${LINTER}" version 2>&1)
|
|
elif [[ ${LINTER} == "checkstyle" ]]; then
|
|
mapfile -t GET_VERSION_CMD < <("java -jar /usr/bin/${LINTER}" --version 2>&1)
|
|
else
|
|
# Standard version command
|
|
mapfile -t GET_VERSION_CMD < <("${LINTER}" --version 2>&1)
|
|
fi
|
|
|
|
#######################
|
|
# Load the error code #
|
|
#######################
|
|
ERROR_CODE=$?
|
|
|
|
##############################
|
|
# Check the shell for errors #
|
|
##############################
|
|
if [ ${ERROR_CODE} -ne 0 ] || [ -z "${GET_VERSION_CMD[*]}" ]; then
|
|
warn "[${LINTER}]: Failed to get version info for:"
|
|
WriteFile "${LINTER}" "Failed to get version info"
|
|
else
|
|
##########################
|
|
# Print the version info #
|
|
##########################
|
|
info "Successfully found version for ${F[W]}[${LINTER}]${F[B]}: ${F[W]}${GET_VERSION_CMD[*]}"
|
|
WriteFile "${LINTER}" "${GET_VERSION_CMD[*]}"
|
|
fi
|
|
fi
|
|
done
|
|
|
|
#########################
|
|
# Print version footers #
|
|
#########################
|
|
info "---------------------------------------------"
|
|
}
|
|
################################################################################
|
|
#### Function WriteFile ########################################################
|
|
WriteFile() {
|
|
##############
|
|
# Read Input #
|
|
##############
|
|
LINTER="$1" # Name of the linter
|
|
VERSION="$2" # Version returned from check
|
|
|
|
#################################
|
|
# Write the data to output file #
|
|
#################################
|
|
echo "${LINTER}: ${VERSION}" >> "${VERSION_FILE}" 2>&1
|
|
|
|
#######################
|
|
# Load the error code #
|
|
#######################
|
|
ERROR_CODE=$?
|
|
|
|
##############################
|
|
# Check the shell for errors #
|
|
##############################
|
|
if [ $ERROR_CODE -ne 0 ]; then
|
|
fatal "Failed to write data to file!"
|
|
fi
|
|
}
|
|
################################################################################
|
|
############################### MAIN ###########################################
|
|
################################################################################
|
|
|
|
#######################
|
|
# BuildLinterVersions #
|
|
#######################
|
|
BuildLinterVersions
|