style: trim excess whitespace

This commit is contained in:
a1346054 2021-08-21 10:25:26 +00:00 committed by David Peter
parent 5197ef9048
commit 51edacb5eb
7 changed files with 10 additions and 13 deletions

View File

@ -1,2 +1 @@
blank_issues_enabled: true

View File

@ -7,4 +7,3 @@ assignees: ''
---

View File

@ -7,4 +7,3 @@ assignees: ''
---

View File

@ -3,9 +3,9 @@ cd "$(dirname "${BASH_SOURCE[0]}")" || exit
# Check that Hyperfine is installed.
if ! command -v hyperfine > /dev/null 2>&1; then
echo "'hyperfine' does not seem to be installed."
echo "You can get it here: https://github.com/sharkdp/hyperfine"
exit 1
echo "'hyperfine' does not seem to be installed."
echo "You can get it here: https://github.com/sharkdp/hyperfine"
exit 1
fi
# Determine the target directories.
@ -68,5 +68,5 @@ echo "### Time to syntax-highlight large files"
echo
for SRC in test-src/*; do
hyperfine --warmup 3 "$(printf "%q" "$BAT") --style=full --color=always --paging=never $(printf "%q" "$SRC")"
hyperfine --warmup 3 "$(printf "%q" "$BAT") --style=full --color=always --paging=never $(printf "%q" "$SRC")"
done