From 0793eb41a716ccb42ec0b23287394715a2430375 Mon Sep 17 00:00:00 2001 From: Travis Swicegood Date: Wed, 5 Dec 2018 21:00:41 -0600 Subject: [PATCH] =?UTF-8?q?Ignore=20SC2139=20=E2=80=93=20it's=20ok=20that?= =?UTF-8?q?=20these=20are=20expanded=20when=20evaluated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/helpers.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/helpers.bash b/lib/helpers.bash index ed229b3a..d71120b8 100644 --- a/lib/helpers.bash +++ b/lib/helpers.bash @@ -19,12 +19,15 @@ function _make_reload_alias() { } # Alias for reloading aliases +# shellcheck disable=SC2139 alias reload_aliases="$(_make_reload_alias alias aliases)" # Alias for reloading auto-completion +# shellcheck disable=SC2139 alias reload_completion="$(_make_reload_alias completion completion)" # Alias for reloading plugins +# shellcheck disable=SC2139 alias reload_plugins="$(_make_reload_alias plugin plugins)" bash-it ()