From 5aec1c995bdd8700e88b81b5dbd5e2da991dc4a8 Mon Sep 17 00:00:00 2001 From: Jose Luis Blanco-Claraco Date: Sun, 16 Nov 2025 09:14:03 +0100 Subject: [PATCH] Add scripts/formatter.sh for manually applying clang-format-14 --- scripts/formatter.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 scripts/formatter.sh diff --git a/scripts/formatter.sh b/scripts/formatter.sh new file mode 100755 index 0000000..cb045dc --- /dev/null +++ b/scripts/formatter.sh @@ -0,0 +1,2 @@ +# formatter.sh +find include/ examples/ tests/ -iname *.h -o -iname *.hpp -o -iname *.cpp -o -iname *.c | grep -v gtest | xargs clang-format-14 -i