mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-21 12:25:14 +00:00
23 lines
651 B
Plaintext
23 lines
651 B
Plaintext
###############################################################################
|
|
# .shellcheckrc
|
|
#
|
|
# https://github.com/koalaman/shellcheck
|
|
# https://github.com/koalaman/shellcheck/wiki/Ignore
|
|
###############################################################################
|
|
|
|
# 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
|
|
#
|
|
# `IFS` and `noglob` are set.
|
|
#
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2206
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2207
|
|
disable=SC2206,SC2207
|