Files
santa/Testing/fix.sh
2021-10-18 13:27:36 -04:00

6 lines
185 B
Bash
Executable File

#!/bin/bash
GIT_ROOT=$(git rev-parse --show-toplevel)
find $GIT_ROOT \( -name "*.m" -o -name "*.h" -name "*.mm" \) -exec xcrun clang-format -i {} \+
buildifier --lint=fix -r $GIT_ROOT