Merge pull request #624 from github/ignoreMore

adding more folders to ignore
This commit is contained in:
Lukas Gravley 2020-08-25 11:49:55 -05:00 committed by GitHub
commit ef72c25668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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