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
|
|
|
###############################################################################
|
|
|
|
|
2020-06-07 20:49:48 +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
|
|
|
|
|
2020-03-15 18:38:39 +00:00
|
|
|
# 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
|
|
|
#
|
2020-03-15 18:38:39 +00:00
|
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2206
|
2020-03-15 18:31:27 +00:00
|
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2207
|
2020-03-15 18:38:39 +00:00
|
|
|
disable=SC2206,SC2207
|