jshint: New completion
This commit is contained in:
parent
4b209b0b17
commit
adff509ec5
@ -166,6 +166,7 @@ bashcomp_DATA = 2to3 \
|
|||||||
javaws \
|
javaws \
|
||||||
jpegoptim \
|
jpegoptim \
|
||||||
jps \
|
jps \
|
||||||
|
jshint \
|
||||||
k3b \
|
k3b \
|
||||||
kcov \
|
kcov \
|
||||||
kill \
|
kill \
|
||||||
|
38
completions/jshint
Normal file
38
completions/jshint
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# bash completion for jshint -*- shell-script -*-
|
||||||
|
|
||||||
|
_jshint()
|
||||||
|
{
|
||||||
|
local cur prev words cword split
|
||||||
|
_init_completion -s || return
|
||||||
|
|
||||||
|
case $prev in
|
||||||
|
-v|--version|-h|--help|--exclude|--filename|-e|--extra-ext)
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
-c|--config)
|
||||||
|
_filedir
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
--reporter)
|
||||||
|
COMPREPLY=( $( compgen -W "jslint checkstyle unix" -- "$cur" ) )
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
--extract)
|
||||||
|
COMPREPLY=( $( compgen -W "auto always never" -- "$cur" ) )
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
$split && return
|
||||||
|
|
||||||
|
if [[ $cur == -* ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
|
||||||
|
[[ $COMPREPLY == *= ]] && compopt -o nospace
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
_filedir js
|
||||||
|
} &&
|
||||||
|
complete -F _jshint jshint
|
||||||
|
|
||||||
|
# ex: ts=4 sw=4 et filetype=sh
|
1
test/completion/jshint.exp
Normal file
1
test/completion/jshint.exp
Normal file
@ -0,0 +1 @@
|
|||||||
|
assert_source_completions jshint
|
18
test/lib/completions/jshint.exp
Normal file
18
test/lib/completions/jshint.exp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
proc setup {} {
|
||||||
|
save_env
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
proc teardown {} {
|
||||||
|
assert_env_unmodified
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
setup
|
||||||
|
|
||||||
|
|
||||||
|
assert_complete_any "jshint "
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
|
||||||
|
teardown
|
Loading…
x
Reference in New Issue
Block a user