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/analyzer.cpp b/analyzer.cpp
index 80e22fc..81988a1 100644
--- a/analyzer.cpp
+++ b/analyzer.cpp
@@ -917,13 +917,13 @@
     }
     // Update global latency histogram
     // For method call latency
-    if (type == 1) // DBUS_MESSAGE_TYPE_METHOD_CALL
+    if (type == 1)       // DBUS_MESSAGE_TYPE_METHOD_CALL
     {
         uint64_t serial; // serial == cookie
         sd_bus_message_get_cookie(m, &serial);
         in_flight_methodcalls[serial] = Microseconds();
     }
-    else if (type == 2) // DBUS_MESSAGE_TYPE_MEHOTD_RETURN
+    else if (type == 2)            // DBUS_MESSAGE_TYPE_MEHOTD_RETURN
     {
         uint64_t reply_serial = 0; // serial == cookie
         sd_bus_message_get_reply_cookie(m, &reply_serial);