summaryrefslogtreecommitdiff
path: root/completions/jshint
diff options
context:
space:
mode:
Diffstat (limited to 'completions/jshint')
-rw-r--r--completions/jshint6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/jshint b/completions/jshint
index ea9bbeb5..ee89070a 100644
--- a/completions/jshint
+++ b/completions/jshint
@@ -14,11 +14,11 @@ _jshint()
return
;;
--reporter)
- COMPREPLY=( $( compgen -W "jslint checkstyle unix" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "jslint checkstyle unix" -- "$cur") )
return
;;
--extract)
- COMPREPLY=( $( compgen -W "auto always never" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "auto always never" -- "$cur") )
return
;;
esac
@@ -26,7 +26,7 @@ _jshint()
$split && return
if [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi