1
0
mirror of https://github.com/kakwa/uts-server synced 2024-06-02 09:08:07 +02:00

add format script

This commit is contained in:
kakwa 2016-08-23 19:38:39 +02:00
parent 291f58bd7e
commit 7c45a71f22

10
goodies/format Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
cd `dirname $0`/../
clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}" -i \
`find ./src/ ./inc/ -type f -name "*.cpp" -o \
-type f -name "*.c" -o \
-type f -name "*.h" -o \
-type f -name "*.hpp"`