From c3c4fa0c588ee542a547289e5f5a325db2227a7e Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 5 Sep 2022 01:51:37 +0200 Subject: [PATCH] =?UTF-8?q?disable=20=E2=80=9CQuote=20in=20arrays=E2=80=9D?= =?UTF-8?q?=20shellcheck-warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .shellcheckrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.shellcheckrc b/.shellcheckrc index 69f538e..c237e0c 100644 --- a/.shellcheckrc +++ b/.shellcheckrc @@ -6,5 +6,6 @@ disable=SC2034 # unused variable disable=SC2115 # empty variable in path disable=SC2086,SC2206 # quote variables disable=SC2046 # quote $(foo) +disable=SC2207 # Quote in arrays # vim: set ts=4 sw=4 et tw=80 ft=bash: