chore: Unify .clang-format file (#5037)

* chore: Unify all .clang-format files in the root dir

* Update `scripts/check-format.sh` to include all source dirs

* Add changelog entry
This commit is contained in:
pajlada
2023-12-17 14:50:42 +01:00
committed by GitHub
parent 0395b692e4
commit 269e7a07b4
6 changed files with 2 additions and 157 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ while read -r file; do
echo "$file differs!!!!!!!"
fail="1"
fi
done < <(find src/ -type f \( -iname "*.hpp" -o -iname "*.cpp" \))
done < <(find src/ tests/src benchmarks/src mocks/include -type f \( -iname "*.hpp" -o -iname "*.cpp" \))
if [ "$fail" = "1" ]; then
echo "At least one file is poorly formatted - check the output above"