From 7f644309d877a1178c00e2bc74833616ef545b8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Reegn?= Date: Fri, 10 Nov 2023 16:52:05 +0100 Subject: [PATCH] Disable SC2086 where it's not necessary (#27) --- jq.plugin.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jq.plugin.zsh b/jq.plugin.zsh index 9889dc2..72abce9 100755 --- a/jq.plugin.zsh +++ b/jq.plugin.zsh @@ -5,9 +5,11 @@ __get_query() { unset 'functions[_jq-plugin-expand]' functions[_jq-plugin-expand]=${LBUFFER} (($+functions[_jq-plugin-expand])) && COMMAND=${functions[_jq-plugin-expand]#$'\t'} + # shellcheck disable=SC2086 jq-repl -- ${COMMAND} return $? else + # shellcheck disable=SC2086 jq-repl -- ${LBUFFER} return $? fi