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: I44441096113929ce96eb1439e2932e6ff3c87f27
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/dcmihandler.hpp b/dcmihandler.hpp
index 303f6d0..793a03c 100644
--- a/dcmihandler.hpp
+++ b/dcmihandler.hpp
@@ -2,8 +2,9 @@
 
 #include "nlohmann/json.hpp"
 
-#include <map>
 #include <sdbusplus/bus.hpp>
+
+#include <map>
 #include <string>
 #include <vector>
 
@@ -90,7 +91,7 @@
     uint8_t sign : 1;        //!< Sign bit
     uint8_t temperature : 7; //!< Temperature reading in Celsius
 #endif
-    uint8_t instance; //!< Entity instance number
+    uint8_t instance;        //!< Entity instance number
 } __attribute__((packed));
 
 using ResponseList = std::vector<Response>;