clang-format: copy latest and re-format

clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.

Change-Id: I16ee1c207c68c93c939ec7775238ab0cd86e7330
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/rect.hpp b/rect.hpp
index 8106143..e14fded 100644
--- a/rect.hpp
+++ b/rect.hpp
@@ -21,4 +21,4 @@
     int x, y, w, h; // X, Y, Width, Height
     Rect(int _x, int _y, int _w, int _h) : x(_x), y(_y), w(_w), h(_h) {}
     Rect() : x(0), y(0), w(1), h(1) {}
-};
\ No newline at end of file
+};