mirror of
https://github.com/google/santa.git
synced 2026-01-14 08:47:57 -05:00
7 lines
272 B
Bash
Executable File
7 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
find ${GIT_ROOT} \( -name "*.m" -o -name "*.h" -o -name "*.mm" -o -name "*.cc" \) -exec xcrun clang-format -i {} \+
|
|
buildifier --lint=fix -r ${GIT_ROOT}
|
|
python3 -m pyink --config ${GIT_ROOT}/.pyink-config ${GIT_ROOT}
|