add format script

This commit is contained in:
kakwa 2016-08-23 19:38:39 +02:00
parent 291f58bd7e
commit 7c45a71f22
1 changed files with 10 additions and 0 deletions

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"`