From 66563ad58af020b531de5942d88ee3c0fd3e7b63 Mon Sep 17 00:00:00 2001 From: Zane Duffield Date: Wed, 14 Jan 2026 11:41:05 +1100 Subject: [PATCH] Add .shellcheckrc to silence lints --- .shellcheckrc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .shellcheckrc diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000..7bc8420 --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,8 @@ +# Many array expressions are constructed and eval-ed +disable=SC2016 +# False positive on "CMDARG_ERROR_BEHAVIOR=return" +disable=SC2209 +# Checking exit code with $? is more of a preference when the script doesn't try to support the errexit shell option +disable=SC2181 +# Masking exit codes isn't much of a problem in this script +disable=SC2155