Exclude shellcheck rule

This commit is contained in:
cytopia 2021-05-17 20:56:08 +02:00
parent d0585bb174
commit c40c43c4ea
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -22,7 +22,7 @@ lint-tests:
-v "$(PWD):/mnt" \
--entrypoint=sh \
koalaman/shellcheck-alpine:stable \
-c "find . -name '*.sh' -print0 | xargs -0 -n1 shellcheck --check-sourced --color=auto --shell=bash"
-c "find . -name '*.sh' -print0 | xargs -0 -n1 shellcheck --check-sourced --color=auto --exclude=SC1091 --shell=bash"
# -------------------------------------------------------------------------------------------------