adding more folders to ignore

This commit is contained in:
Lucas Gravley 2020-08-25 10:32:05 -05:00
parent 3a5bda1f5e
commit ae9cb55eec

View file

@ -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
##################################