2018-09-20 10:01:51 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2018-11-14 23:05:20 +00:00
|
|
|
. scripts/report_errors.sh
|
|
|
|
|
2018-09-20 10:01:51 +00:00
|
|
|
(
|
2018-11-12 14:18:29 +00:00
|
|
|
REPO_ROOT="$(dirname "$0")"/..
|
2018-09-20 10:01:51 +00:00
|
|
|
cd $REPO_ROOT
|
2018-11-12 14:18:29 +00:00
|
|
|
|
2019-05-28 15:24:54 +00:00
|
|
|
WHITESPACE=$(git grep -n -I -E "^.*[[:space:]]+$" | grep -v "test/libsolidity/ASTJSON\|test/libsolidity/ASTRecoveryTests\|test/compilationTests/zeppelin/LICENSE")
|
2018-09-20 10:01:51 +00:00
|
|
|
|
|
|
|
if [[ "$WHITESPACE" != "" ]]
|
|
|
|
then
|
2018-11-14 23:05:20 +00:00
|
|
|
echo "Error: Trailing whitespace found:" | tee -a $ERROR_LOG
|
|
|
|
echo "$WHITESPACE" | tee -a $ERROR_LOG
|
2018-09-20 10:01:51 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-05-07 16:49:54 +00:00
|
|
|
function preparedGrep()
|
|
|
|
{
|
|
|
|
git grep -nIE "$1" -- '*.h' '*.cpp' | grep -v "picosha2.h"
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-20 10:01:51 +00:00
|
|
|
FORMATERROR=$(
|
|
|
|
(
|
2020-05-07 16:49:54 +00:00
|
|
|
preparedGrep "#include \"" | egrep -v -e "license.h" -e "BuildInfo.h" # Use include with <> characters
|
|
|
|
preparedGrep "\<(if|for|while|switch)\(" # no space after "if", "for", "while" or "switch"
|
|
|
|
preparedGrep "\<for\>\s*\([^=]*\>\s:\s.*\)" # no space before range based for-loop
|
|
|
|
preparedGrep "\<if\>\s*\(.*\)\s*\{\s*$" # "{\n" on same line as "if" / "for"
|
|
|
|
preparedGrep "[,\(<]\s*const " # const on left side of type
|
|
|
|
preparedGrep "^\s*(static)?\s*const " # const on left side of type (beginning of line)
|
|
|
|
preparedGrep "^ [^*]|[^*] | [^*]" # uses spaces for indentation or mixes spaces and tabs
|
|
|
|
preparedGrep "[a-zA-Z0-9_]\s*[&][a-zA-Z_]" | egrep -v "return [&]" # right-aligned reference ampersand (needs to exclude return)
|
2019-02-14 10:37:24 +00:00
|
|
|
# right-aligned reference pointer star (needs to exclude return and comments)
|
2020-05-07 16:49:54 +00:00
|
|
|
preparedGrep "[a-zA-Z0-9_]\s*[*][a-zA-Z_]" | egrep -v -e "return [*]" -e "^* [*]" -e "^*//.*"
|
2019-02-14 10:54:52 +00:00
|
|
|
) | egrep -v -e "^[a-zA-Z\./]*:[0-9]*:\s*\/(\/|\*)" -e "^test/"
|
2018-09-20 10:01:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if [[ "$FORMATERROR" != "" ]]
|
|
|
|
then
|
2019-02-13 15:20:16 +00:00
|
|
|
echo "Coding style error:" | tee -a $ERROR_LOG
|
2018-11-14 23:05:20 +00:00
|
|
|
echo "$FORMATERROR" | tee -a $ERROR_LOG
|
2018-09-20 10:01:51 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
)
|