Reformat meson files with meson format

Meson recently got a new format command in 1.5.0 [1].  It makes slightly
different formatting decisions compared to muon (what we used
previously) but given it's the official tool, we should switch to it.

There is one bug resolved recently that requires this format be done
using the meson from master.

Ideally this would be enforced by CI in the future, but that's WIP.

Tested: Whitespace only, code compiles.

[1] https://mesonbuild.com/Commands.html#format
[2] https://github.com/mesonbuild/meson/commit/df706807239095ddbbfd2975b3fe067ad6b5d535

Change-Id: I91506efb659c431e913c717d8a26aa349fccbd75
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/meson.options b/meson.options
index 055bc84..bbca68a 100644
--- a/meson.options
+++ b/meson.options
@@ -145,7 +145,15 @@
 option(
     'bmcweb-logging',
     type: 'combo',
-    choices: ['disabled', 'enabled', 'debug', 'info', 'warning', 'error', 'critical'],
+    choices: [
+        'disabled',
+        'enabled',
+        'debug',
+        'info',
+        'warning',
+        'error',
+        'critical',
+    ],
     value: 'error',
     description: '''Enable output the extended logging level.
                     - disabled: disable bmcweb log traces.