From c40c43c4ea282618ba0941c974d3ac143df6fae0 Mon Sep 17 00:00:00 2001 From: cytopia Date: Mon, 17 May 2021 20:56:08 +0200 Subject: [PATCH] Exclude shellcheck rule --- .tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tests/Makefile b/.tests/Makefile index 59cd07dd..f0c3c72f 100644 --- a/.tests/Makefile +++ b/.tests/Makefile @@ -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" # -------------------------------------------------------------------------------------------------