Speed up and simplify the custom checks a lot

This commit is contained in:
w0rp 2017-03-07 00:16:35 +00:00
parent b3ab89ac15
commit b487c62130

View file

@ -42,48 +42,32 @@ if [ $# -eq 0 ] || [ -z "$1" ]; then
print_help print_help
fi fi
# Called to output an error. shopt -s globstar
# If called at least one, the return code for this script will be 1.
output_error() { directory="$1"
echo "$FILENAME:$LINE_NUMBER $1"
RETURN_CODE=1 check_errors() {
regex="$1"
message="$2"
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
} }
# This function is called for each line in each file to check syntax. if (( FIX_ERRORS )); then
check_line() { sed -i "s/^\(function.*)\) *$/\1 abort/" "$directory"/**/*.vim
line="$1" fi
if [[ "$line" =~ ^function ]]; then check_errors \
if ! [[ "$line" =~ abort$ ]]; then '^function.*\) *$' \
if ((FIX_ERRORS)); then 'Function without abort keyword (See :help except-compat)'
# Use sed to add the 'abort' flag check_errors ' +$' 'Trailing whitespace'
sed -i "${LINE_NUMBER}s/$/ abort/" "$FILENAME" check_errors '^ * end?i? *$' 'Write endif, not en, end, or endi'
else
output_error 'Function without abort keyword (See :help except-compat)'
fi
fi
fi
if [[ "$line" =~ ' '+$ ]]; then
output_error 'Trailing whitespace'
fi
endif_regex='^ * end?i? *$'
if [[ "$line" =~ $endif_regex ]]; then
output_error 'Write endif, not en, end, or endi'
fi
}
# Loop through all of the vim files and keep track of the file line numbers.
for FILENAME in $(find "$1" -name '*.vim'); do
LINE_NUMBER=0
while read; do
LINE_NUMBER=$(expr $LINE_NUMBER + 1)
check_line "$REPLY"
done < "$FILENAME"
done
exit $RETURN_CODE exit $RETURN_CODE