aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/detect_trailing_whitespace.sh
blob: 1a136a10d77d56688c061f64f42e4dcefde59329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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
    echo "$WHITESPACE" >&2
    exit 1
fi
)