mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #4897 from ethereum/trailingWhitespaceDetection
Trailing whitespace detection script and circleci job.
This commit is contained in:
Executable
+15
@@ -0,0 +1,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
|
||||
)
|
||||
Reference in New Issue
Block a user