From 4fae0d5526219059aa602cbb3625642952ad81d0 Mon Sep 17 00:00:00 2001 From: William Melody Date: Sun, 15 Mar 2020 11:38:39 -0700 Subject: [PATCH] Disable SC2206. `IFS` and `noglob` are set, so we can ignore both SC2206 and SC2207. --- .shellcheckrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.shellcheckrc b/.shellcheckrc index ce47981..af55723 100644 --- a/.shellcheckrc +++ b/.shellcheckrc @@ -4,9 +4,10 @@ # https://github.com/koalaman/shellcheck ############################################################################### -# Disable SC2207 +# Disable SC2206 and SC2207 # # IFS and `noglob` are set. # +# https://github.com/koalaman/shellcheck/wiki/SC2206 # https://github.com/koalaman/shellcheck/wiki/SC2207 -disable=SC2207 +disable=SC2206,SC2207