mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-24 13:47:35 +00:00
4fae0d5526
`IFS` and `noglob` are set, so we can ignore both SC2206 and SC2207.
14 lines
408 B
Plaintext
14 lines
408 B
Plaintext
###############################################################################
|
|
# .shellcheckrc
|
|
#
|
|
# https://github.com/koalaman/shellcheck
|
|
###############################################################################
|
|
|
|
# Disable SC2206 and SC2207
|
|
#
|
|
# IFS and `noglob` are set.
|
|
#
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2206
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2207
|
|
disable=SC2206,SC2207
|