From 4aa2562f164a0199c6ba5c70109f6647a309c704 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 29 Jun 2024 03:44:46 -0400 Subject: [PATCH] tests: exclude SC1091 from shellcheck rules --- tests/shellcheck-exclude | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/shellcheck-exclude b/tests/shellcheck-exclude index 9a160cf..9fbac74 100644 --- a/tests/shellcheck-exclude +++ b/tests/shellcheck-exclude @@ -1,4 +1,5 @@ # SC1090 - Can't follow non-constant source. Use a directive to specify location - https://github.com/koalaman/shellcheck/wiki/SC1090 +# SC1091 - Not following - # SC2034 - Variable appears unused. Verify it or export it - https://github.com/koalaman/shellcheck/wiki/SC2034 # SC2155 - Declare and assign separately to avoid masking return values - https://github.com/koalaman/shellcheck/wiki/SC2155 # SC2206 - Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a - https://github.com/koalaman/shellcheck/wiki/SC2206