forked from mirror/nheko
parent
f351b00075
commit
37ff1398b7
@ -0,0 +1,14 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Runs the Clang Formatter |
||||
# Return codes: |
||||
# - 1 there are files to be formatted |
||||
# - 0 everything looks fine |
||||
|
||||
set -o errexit |
||||
set -o pipefail |
||||
set -o nounset |
||||
|
||||
FILES=`find include src tests -type f -type f \( -iname "*.cc" -o -iname "*.h" \)` |
||||
|
||||
clang-format -i $FILES && git diff --exit-code |
Loading…
Reference in new issue