diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/run_clang_format.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/run_clang_format.sh b/scripts/run_clang_format.sh new file mode 100755 index 0000000..9a2d397 --- /dev/null +++ b/scripts/run_clang_format.sh @@ -0,0 +1,3 @@ +#!/bin/sh +find . -path ./3rd_party -prune -o \( -name '*.h' -or -name '*.cpp' \) \ + -exec clang-format -i {} \; |