2017-01-22 14:54:57 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
|
|
|
|
# This Bash script implements custom sanity checks for scripts beyond what
|
|
|
|
# Vint covers, which are easy to check with regex.
|
|
|
|
|
|
|
|
# A flag for automatically fixing some errors.
|
|
|
|
FIX_ERRORS=0
|
|
|
|
RETURN_CODE=0
|
|
|
|
|
|
|
|
function print_help() {
|
|
|
|
echo "Usage: ./custom-checks [--fix] [DIRECTORY]" 1>&2
|
|
|
|
echo 1>&2
|
|
|
|
echo " -h, --help Print this help text" 1>&2
|
|
|
|
echo " --fix Automatically fix some errors" 1>&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
while [ $# -ne 0 ]; do
|
|
|
|
case $1 in
|
|
|
|
-h) ;& --help)
|
|
|
|
print_help
|
|
|
|
;;
|
|
|
|
--fix)
|
|
|
|
FIX_ERRORS=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
-?*)
|
|
|
|
echo "Invalid argument: $1" 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $# -eq 0 ] || [ -z "$1" ]; then
|
|
|
|
print_help
|
|
|
|
fi
|
|
|
|
|
2017-03-07 00:16:35 +00:00
|
|
|
shopt -s globstar
|
2017-01-22 14:54:57 +00:00
|
|
|
|
2017-03-07 00:16:35 +00:00
|
|
|
directory="$1"
|
2017-02-21 11:50:59 +00:00
|
|
|
|
2017-03-07 00:16:35 +00:00
|
|
|
check_errors() {
|
|
|
|
regex="$1"
|
|
|
|
message="$2"
|
2017-02-21 11:50:59 +00:00
|
|
|
|
2017-03-07 00:16:35 +00:00
|
|
|
for match in $(
|
|
|
|
grep --color=never -Pn "$regex" "$directory"/**/*.vim \
|
|
|
|
| grep --color=never -Po '^[^:]+:[0-9]+' \
|
|
|
|
| sed 's:^\./::'
|
|
|
|
); do
|
|
|
|
RETURN_CODE=1
|
|
|
|
echo "$match $message"
|
|
|
|
done
|
2017-01-22 14:54:57 +00:00
|
|
|
}
|
|
|
|
|
2017-03-07 00:16:35 +00:00
|
|
|
if (( FIX_ERRORS )); then
|
|
|
|
sed -i "s/^\(function.*)\) *$/\1 abort/" "$directory"/**/*.vim
|
|
|
|
fi
|
2017-01-22 14:54:57 +00:00
|
|
|
|
2017-03-07 00:16:35 +00:00
|
|
|
check_errors \
|
|
|
|
'^function.*\) *$' \
|
|
|
|
'Function without abort keyword (See :help except-compat)'
|
|
|
|
check_errors ' +$' 'Trailing whitespace'
|
|
|
|
check_errors '^ * end?i? *$' 'Write endif, not en, end, or endi'
|
2017-01-22 14:54:57 +00:00
|
|
|
|
|
|
|
exit $RETURN_CODE
|