small tweaks and fixes

This commit is contained in:
Robin Müller 2021-12-07 13:14:57 +01:00
parent cbcfa8fe56
commit e952a82b65
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 4 additions and 4 deletions

View File

@ -3,5 +3,5 @@ BasedOnStyle: Google
IndentWidth: 2
---
Language: Cpp
ColumnWidth: 100
ColumnLimit: 100
---

View File

@ -3,6 +3,6 @@ if [[ ! -f README.md ]]; then
cd ..
fi
find ./src -iname *.h -o -iname *.cpp | xargs clang-format --style=file -i
find ./hal -iname *.h -o -iname *.cpp | xargs clang-format --style=file -i
find ./tests -iname *.h -o -iname *.cpp | xargs clang-format --style=file -i
find ./src -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./hal -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./tests -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i