Reformat with Never-AlignTrailingComments style

clang-format currently formats the codes to align the trailing comments
of the consecutive lines via `AlignTrailingComments/Kind` as `Always` in
`.clang-format` file.

This could shift the comment lines by the neighboring code changes and
also potentially mislead the `diff` of code changes.

This commit is to keep the existing trailing comments as they were.

Tested:
- Check whitespace only
- Code compiles & CI passes.

Change-Id: I1c64d53572a81d5012aa748fe44478f80c271c5f
Signed-off-by: Myung Bae <myungbae@us.ibm.com>
diff --git a/include/authentication.hpp b/include/authentication.hpp
index 1a05efd..b423af2 100644
--- a/include/authentication.hpp
+++ b/include/authentication.hpp
@@ -208,8 +208,8 @@
     }
     if (boost::beast::http::verb::get == method)
     {
-        if ((url == "/redfish") ||          //
-            (url == "/redfish/v1") ||       //
+        if ((url == "/redfish") || //
+            (url == "/redfish/v1") || //
             (url == "/redfish/v1/odata") || //
             (url == "/redfish/v1/$metadata"))
         {
diff --git a/include/ibm/management_console_rest.hpp b/include/ibm/management_console_rest.hpp
index ce8e573..9d6f690 100644
--- a/include/ibm/management_console_rest.hpp
+++ b/include/ibm/management_console_rest.hpp
@@ -28,11 +28,11 @@
 constexpr size_t maxSaveareaDirSize =
     25000000; // Allow save area dir size to be max 25MB
 constexpr size_t minSaveareaFileSize =
-    100;      // Allow save area file size of minimum 100B
+    100; // Allow save area file size of minimum 100B
 constexpr size_t maxSaveareaFileSize =
-    500000;   // Allow save area file size upto 500KB
+    500000; // Allow save area file size upto 500KB
 constexpr size_t maxBroadcastMsgSize =
-    1000;     // Allow Broadcast message size upto 1KB
+    1000; // Allow Broadcast message size upto 1KB
 
 inline void handleFilePut(const crow::Request& req,
                           const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,