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: I5e6c59b6e1be7f2d3712bb7cb18aa86280f3186a
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/views.cpp b/views.cpp
index ea5140f..1c36fdb 100644
--- a/views.cpp
+++ b/views.cpp
@@ -1171,7 +1171,7 @@
             [](const std::pair<StringOrFloat, std::vector<std::string>>& a,
                const std::pair<StringOrFloat, std::vector<std::string>>& b) {
             return a.first.f < b.first.f;
-            });
+        });
     }
     else
     {
@@ -1180,7 +1180,7 @@
             [](const std::pair<StringOrFloat, std::vector<std::string>>& a,
                const std::pair<StringOrFloat, std::vector<std::string>>& b) {
             return a.first.s < b.first.s;
-            });
+        });
     }
 
     if (sort_order_ == Descending)