Disable SC2206.

`IFS` and `noglob` are set, so we can ignore both SC2206 and SC2207.
This commit is contained in:
William Melody 2020-03-15 11:38:39 -07:00
parent c680c02007
commit 4fae0d5526
1 changed files with 3 additions and 2 deletions

View File

@ -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