Remove npm-groovy-lint custom handling as it now accepts files as arguments (#3250)

This commit is contained in:
Nicolas Vuillamy 2022-08-15 19:49:50 +02:00 committed by GitHub
parent f7dba5115a
commit f1196a50f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -215,17 +215,6 @@ function LintCodebase() {
exit $? 2>&1
)
###############################################################################
# Corner case for groovy as we have to pass it as path and file in ant format #
###############################################################################
elif [[ ${FILE_TYPE} == "GROOVY" ]]; then
#######################################
# Lint the file with the updated path #
#######################################
LINT_CMD=$(
cd "${WORKSPACE_PATH}" || exit
${LINTER_COMMAND} --path "${DIR_NAME}" --files "$FILE_NAME" 2>&1
)
###############################################################################
# Corner case for R as we have to pass it to R #
###############################################################################
elif [[ ${FILE_TYPE} == "R" ]]; then