You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env sh
|
|
|
|
# Runs the Clang Formatter
|
|
# Return codes:
|
|
# - 1 there are files to be formatted
|
|
# - 0 everything looks fine
|
|
|
|
set -eu
|
|
|
|
FILES=$(find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \))
|
|
|
|
for f in $FILES
|
|
do
|
|
clang-format -i "$f"
|
|
done;
|
|
|
|
git diff --exit-code
|
|
|