diff --git a/Dockerfile b/Dockerfile index 300acbf9..046a8f41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,6 +54,7 @@ RUN npm -g --no-cache install \ typescript eslint \ standard \ babel-eslint \ + prettier \ @typescript-eslint/eslint-plugin \ @typescript-eslint/parser diff --git a/lib/linter.sh b/lib/linter.sh index 52f8d0d6..dc934ed4 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -101,13 +101,13 @@ Header() echo "---------------------------------------------" echo "" - echo "--- DEBUG ---" - echo "---------------------------------------------" - RUNNER=$(whoami) - echo "Runner:[$RUNNER]" - echo "ENV:" - printenv - echo "---------------------------------------------" + # echo "--- DEBUG ---" + # echo "---------------------------------------------" + # RUNNER=$(whoami) + # echo "Runner:[$RUNNER]" + # echo "ENV:" + # printenv + # echo "---------------------------------------------" } ################################################################################ #### Function GetLinterRules ###################################################