From 806174c09031a10b6ac774c497a8f9237d570c57 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 12 Dec 2019 10:53:27 -0600 Subject: [PATCH] adding prints --- lib/linter.sh | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/lib/linter.sh b/lib/linter.sh index 4b7fff35..eafb5d3e 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1545,6 +1545,16 @@ Eslint() #### Function StandardLint ##################################################### StandardLint() { + #################### + # Pull in the file # + #################### + FILE=$1 + + ##################### + # Get the file name # + ##################### + FILE_NAME=$(basename "$FILE" 2>&1) + ######################################################################### # Need to get the ENV vars from the linter rules to run in command line # ######################################################################### @@ -1594,19 +1604,16 @@ StandardLint() # echo "ENV:[$ENV]" ENV_STRING+="--env ${ENV} " done - #################### - # Pull in the file # - #################### - FILE=$1 - ##################### - # Get the file name # - ##################### - FILE_NAME=$(basename "$FILE" 2>&1) + ######################################## + # Remove trailing and ending witespace # + ######################################## + ENV_STRING="$(echo -e "${ENV_STRING}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')" ################################ # Lint the file with the rules # ################################ + echo " - Utilizing Env:[$ENV_STRING]" STANDARD_LINT_CMD=$(standard "$ENV_STRING" "$FILE" 2>&1) #######################