mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
Merge pull request #624 from github/ignoreMore
adding more folders to ignore
This commit is contained in:
commit
ef72c25668
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
||||
##################################
|
||||
|
|
Loading…
Reference in a new issue