From 239a59a2cab6e41210294786c0255b88be3cc103 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 12 May 2023 08:20:36 +0200 Subject: [PATCH] Adjust shellcheck warnings (#133) --- lib/const.sh | 2 +- lib/network.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/const.sh b/lib/const.sh index c0a5890..15dfcac 100644 --- a/lib/const.sh +++ b/lib/const.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034 +# shellcheck disable=SC2004,SC2034 # ============================================================================== # Home Assistant Community Add-ons: Bashio # Bashio is an bash function library for use with Home Assistant add-ons. diff --git a/lib/network.sh b/lib/network.sh index c3bd757..a263d76 100644 --- a/lib/network.sh +++ b/lib/network.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# shellcheck disable=SC2317 # ============================================================================== # Home Assistant Community Add-ons: Bashio # Bashio is an bash function library for use with Home Assistant add-ons.