made auto-formatter even more usable

This commit is contained in:
Robin Müller 2022-05-17 13:31:56 +02:00
parent 14a1b4a7ac
commit e8023886f6
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 8 additions and 7 deletions

View File

@ -3,6 +3,12 @@ if [[ ! -f README.md ]]; then
cd ..
fi
folder_list=(
"./src"
"./hal"
"./tests"
)
cmake_fmt="cmake-format"
if command -v ${cmake_fmt} &> /dev/null; then
cmake_fmt_cmd="${cmake_fmt} -i CMakeLists.txt"
@ -12,15 +18,10 @@ else
fi
cpp_format="clang-format"
folder_list=(
"./src"
"./hal"
"./tests"
)
file_selectors="-iname *.h -o -iname *.cpp -o -iname *.c -o -iname *.tpp"
if command -v ${cpp_format} &> /dev/null; then
echo "Auto-formatting ${dir} recursively"
for dir in ${allThreads[@]}; do
for dir in ${folder_list[@]}; do
echo "Auto-formatting ${dir} recursively"
find ${dir} ${file_selectors} | xargs clang-format --style=file -i
done
else