mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 16:51:05 -05:00
adding files to buildFileList and linter
This commit is contained in:
parent
24ce47014d
commit
accf805de4
2 changed files with 6 additions and 0 deletions
|
@ -404,6 +404,11 @@ function BuildFileList() {
|
||||||
# Append the file to the array #
|
# Append the file to the array #
|
||||||
################################
|
################################
|
||||||
FILE_ARRAY_POWERSHELL+=("${FILE}")
|
FILE_ARRAY_POWERSHELL+=("${FILE}")
|
||||||
|
elif [ "${FILE_TYPE}" == "cs" ]; then
|
||||||
|
################################
|
||||||
|
# Append the file to the array #
|
||||||
|
################################
|
||||||
|
FILE_ARRAY_CSHARP+=("${FILE}")
|
||||||
elif [ "${FILE_TYPE}" == "css" ] || [ "${FILE_TYPE}" == "scss" ] ||
|
elif [ "${FILE_TYPE}" == "css" ] || [ "${FILE_TYPE}" == "scss" ] ||
|
||||||
[ "${FILE_TYPE}" == "sass" ]; then
|
[ "${FILE_TYPE}" == "sass" ]; then
|
||||||
################################
|
################################
|
||||||
|
|
|
@ -280,6 +280,7 @@ FILE_ARRAY_BASH=() # Array of files to check
|
||||||
FILE_ARRAY_CLOUDFORMATION=() # Array of files to check
|
FILE_ARRAY_CLOUDFORMATION=() # Array of files to check
|
||||||
FILE_ARRAY_CLOJURE=() # Array of files to check
|
FILE_ARRAY_CLOJURE=() # Array of files to check
|
||||||
FILE_ARRAY_COFFEESCRIPT=() # Array of files to check
|
FILE_ARRAY_COFFEESCRIPT=() # Array of files to check
|
||||||
|
FILE_ARRAY_CSHARP=() # Array of files to check
|
||||||
FILE_ARRAY_CSS=() # Array of files to check
|
FILE_ARRAY_CSS=() # Array of files to check
|
||||||
FILE_ARRAY_DART=() # Array of files to check
|
FILE_ARRAY_DART=() # Array of files to check
|
||||||
FILE_ARRAY_DOCKERFILE=() # Array of files to check
|
FILE_ARRAY_DOCKERFILE=() # Array of files to check
|
||||||
|
|
Loading…
Reference in a new issue