mirror of https://gitee.com/bigwinds/arangodb
8 lines
314 B
Bash
Executable File
8 lines
314 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find arangod arangosh lib enterprise \
|
|
-name Zip -prune -o \
|
|
-type f "(" -name "*.cpp" -o -name "*.h" ")" \
|
|
"!" "(" -name "tokens.*" -o -name "v8-json.*" -o -name "voc-errors.*" -o -name "grammar.*" -o -name "xxhash.*" -o -name "exitcodes.*" ")" | \
|
|
xargs clang-format -i -verbose
|