We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SC2154
1 parent 12bc998 commit 403f939Copy full SHA for 403f939
plugins/available/alias-completion.plugin.bash
@@ -41,7 +41,6 @@ function alias_completion {
41
# shellcheck disable=SC2162
42
while read line; do
43
eval "alias_tokens=($line)" 2> /dev/null || continue # some alias arg patterns cause an eval parse error
44
- # shellcheck disable=SC2154 # see `eval` above
45
alias_name="${alias_tokens[0]}" alias_cmd="${alias_tokens[1]}" alias_args="${alias_tokens[2]# }"
46
47
# skip aliases to pipes, boolean control structures and other command lists
0 commit comments