mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 14:10:56 -05:00
Merge pull request #679 from Goryudyuma/just-filter-the-git-folder
Just filter the .git folder
This commit is contained in:
commit
9f3eb7d454
1 changed files with 5 additions and 5 deletions
|
@ -160,19 +160,19 @@ function LintCodebase() {
|
||||||
######################################################
|
######################################################
|
||||||
# Make sure we don't lint node modules or test cases #
|
# Make sure we don't lint node modules or test cases #
|
||||||
######################################################
|
######################################################
|
||||||
if [[ ${FILE} == *"node_modules"* ]]; then
|
if [[ ${DIR_NAME} == *"node_modules"* ]]; then
|
||||||
# This is a node modules file
|
# This is a node modules file
|
||||||
continue
|
continue
|
||||||
elif [[ ${FILE} == *"${TEST_CASE_FOLDER}"* ]]; then
|
elif [[ ${DIR_NAME} == *"${TEST_CASE_FOLDER}"* ]]; then
|
||||||
# This is the test cases, we should always skip
|
# This is the test cases, we should always skip
|
||||||
continue
|
continue
|
||||||
elif [[ ${FILE} == *".git"* ]]; then
|
elif [[ ${DIR_NAME} == *".git" ]] || [[ ${FILE} == *".git" ]] || [[ ${FILE} == *".git/"* ]]; then
|
||||||
# This is likely the .git folder and shouldn't be parsed
|
# This is likely the .git folder and shouldn't be parsed
|
||||||
continue
|
continue
|
||||||
elif [[ ${FILE} == *".venv"* ]]; then
|
elif [[ ${DIR_NAME} == *".venv"* ]]; then
|
||||||
# This is likely the python virtual environment folder and shouldn't be parsed
|
# This is likely the python virtual environment folder and shouldn't be parsed
|
||||||
continue
|
continue
|
||||||
elif [[ ${FILE} == *".rbenv"* ]]; then
|
elif [[ ${DIR_NAME} == *".rbenv"* ]]; then
|
||||||
# This is likely the ruby environment folder and shouldn't be parsed
|
# This is likely the ruby environment folder and shouldn't be parsed
|
||||||
continue
|
continue
|
||||||
elif [[ ${FILE_TYPE} == "BASH" ]] && ! IsValidShellScript "${FILE}"; then
|
elif [[ ${FILE_TYPE} == "BASH" ]] && ! IsValidShellScript "${FILE}"; then
|
||||||
|
|
Loading…
Reference in a new issue