1
0
mirror of https://github.com/octoleo/hosts.git synced 2024-06-10 18:22:22 +00:00

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

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