Release v3.0.0 #532

Merged
mohr merged 151 commits from development into master 2022-01-10 14:52:32 +01:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit e952a82b65 - Show all commits

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