From 0b7b6808d53f907363c170bbd3fb08dbcb0c47a7 Mon Sep 17 00:00:00 2001 From: deajan Date: Tue, 2 Oct 2018 18:22:36 +0200 Subject: [PATCH] Add shellcheck exclusions --- dev/shellcheck.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/shellcheck.sh b/dev/shellcheck.sh index 2ee2711..f68431a 100755 --- a/dev/shellcheck.sh +++ b/dev/shellcheck.sh @@ -4,5 +4,7 @@ #SC1091 = not following source #SC2086 = quoting errors (shellcheck is way too picky about quoting) #SC2120 = only for debug version +#SC2034 = unused variabled (can be ignored in ofunctions.sh) +#SC2068 = bad array usage (can be ignored in ofunctions.sh) -shellcheck -e SC1090,SC1091,SC2086,SC2119,SC2120 $1 +shellcheck -e SC1090,SC1091,SC2086,SC2119,SC2120 $@