Files
CocoaTweet/tools/formatAll.sh
T
2021-02-16 15:10:56 +09:00

9 lines
156 B
Bash
Executable File

#!/bin/bash
. "$(dirname "$0")/isTopLevel.sh"
for f in $(git ls-files | grep -E '.*\.(cc|h)$'); do
echo "formatting ${f}"
clang-format -i "${f}"
done