From ae9cb55eecd351be2d60fe34cff59b3f916a2f39 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Tue, 25 Aug 2020 10:32:05 -0500 Subject: [PATCH] adding more folders to ignore --- lib/worker.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/worker.sh b/lib/worker.sh index e2afbee3..53bfc825 100755 --- a/lib/worker.sh +++ b/lib/worker.sh @@ -157,6 +157,12 @@ function LintCodebase() { elif [[ ${FILE} == *".git"* ]]; then # This is likely the .git folder and shouldn't be parsed continue + elif [[ ${FILE} == *".venv"* ]]; then + # This is likely the python virtual environment folder and shouldn't be parsed + continue + elif [[ ${FILE} == *".rbenv"* ]]; then + # This is likely the ruby environment folder and shouldn't be parsed + continue fi ##################################