clang-format: copy latest and re-format

clang-format-17 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: Ie509bd0c9f5a19db463c4bb51ede752e778439b3
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/manager/lamptest/lamptest.cpp b/manager/lamptest/lamptest.cpp
index a70f89c..408f832 100644
--- a/manager/lamptest/lamptest.cpp
+++ b/manager/lamptest/lamptest.cpp
@@ -108,10 +108,9 @@
 
     for (const auto& path : physicalLEDPaths)
     {
-        auto iter = std::find_if(skipUpdateLEDs.begin(), skipUpdateLEDs.end(),
-                                 [&path](const auto& skipLed) {
-            return skipLed == path;
-        });
+        auto iter = std::find_if(
+            skipUpdateLEDs.begin(), skipUpdateLEDs.end(),
+            [&path](const auto& skipLed) { return skipLed == path; });
 
         if (iter != skipUpdateLEDs.end())
         {