From fce7f4ed13bf26ad39a55e4216d4900f776928dc Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Sat, 9 Dec 2017 17:47:14 +0800 Subject: [PATCH] [Fix] Disable ShellCheck SC2207 in bash_completion line 14 --- bash_completion | 1 + 1 file changed, 1 insertion(+) diff --git a/bash_completion b/bash_completion index fb62dcc..328b565 100644 --- a/bash_completion +++ b/bash_completion @@ -10,6 +10,7 @@ __nvm_generate_completion() { declare current_word current_word="${COMP_WORDS[COMP_CWORD]}" + # shellcheck disable=SC2207 COMPREPLY=($(compgen -W "$1" -- "$current_word")) return 0 }