From 004b3d9171406b45dc0f4c8905d669437091467e Mon Sep 17 00:00:00 2001 From: dodger Date: Mon, 19 Jun 2023 16:27:07 +0200 Subject: [PATCH] shellcheck --- .shellcheckrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .shellcheckrc diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000..a2e06cb --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,5 @@ +# SC2317: Command appears to be unreachable. <- unused functions on the template +# SC2034: OPTION appears unused. Verify use <- unused variable on the template +# SC1090: ShellCheck can't follow non-constant source. Use a directive to specify location. <- ${CONFIGFILE} +#disable=SC2317,SC2034,SC1090 +disable=SC2034