solidity/scripts/detect_trailing_whitespace.sh

16 lines
315 B
Bash
Raw Normal View History

#!/usr/bin/env bash
REPO_ROOT="$(dirname "$0")"/..
(
cd $REPO_ROOT
WHITESPACE=$(git grep -n -I -E "^.*[[:space:]]+$" | grep -v "test/libsolidity/ASTJSON\|test/compilationTests/zeppelin/LICENSE")
if [[ "$WHITESPACE" != "" ]]
then
echo "Error: Trailing whitespace found:" >&2
2018-09-04 15:28:52 +00:00
echo "$WHITESPACE" >&2
exit 1
fi
)