hosts/.shellcheckrc

23 lines
651 B
Plaintext
Raw Normal View History

2020-03-15 18:31:27 +00:00
###############################################################################
# .shellcheckrc
#
# https://github.com/koalaman/shellcheck
2020-03-15 18:40:13 +00:00
# https://github.com/koalaman/shellcheck/wiki/Ignore
2020-03-15 18:31:27 +00:00
###############################################################################
# Disable SC2183
#
# Running into this: https://github.com/koalaman/shellcheck/issues/1310
# TODO: Check if resolved.
#
#https://github.com/koalaman/shellcheck/wiki/SC2183
disable=SC2183
# Disable SC2206 and SC2207
2020-03-15 18:31:27 +00:00
#
2020-03-15 18:40:13 +00:00
# `IFS` and `noglob` are set.
2020-03-15 18:31:27 +00:00
#
# https://github.com/koalaman/shellcheck/wiki/SC2206
2020-03-15 18:31:27 +00:00
# https://github.com/koalaman/shellcheck/wiki/SC2207
disable=SC2206,SC2207