Update to the latest .clang-format

Change-Id: Idaaffec251b35a024482a67ef424c3424a92149c
Signed-off-by: Jason M. Bills <jason.m.bills@intel.com>
diff --git a/meson.build b/meson.build
index 20a440d..eb1de6c 100644
--- a/meson.build
+++ b/meson.build
@@ -1,13 +1,10 @@
 project(
-  'intel-ipmi-oem',
-  'cpp',
-  version: '0.1',
-  meson_version: '>=1.1.1',
-  default_options: [
-    'werror=true',
-    'warning_level=3',
-    'cpp_std=c++23',
-  ])
+    'intel-ipmi-oem',
+    'cpp',
+    version: '0.1',
+    meson_version: '>=1.1.1',
+    default_options: ['werror=true', 'warning_level=3', 'cpp_std=c++23'],
+)
 
 # Project Arguments
 all_args = [
@@ -22,25 +19,23 @@
     '-DUSING_ENTITY_MANAGER_DECORATORS',
     '-Wno-psabi',
     '-Wno-pedantic',
-  ]
+]
 
 feature_map = {
-  'intel-pfr': '-DINTEL_PFR_ENABLED',
-  'bmc-validation-unsecure-feature': '-DBMC_VALIDATION_UNSECURE_FEATURE',
-  'using-entity-manager-decorators': '-DUSING_ENTITY_MANAGER_DECORATORS',
+    'intel-pfr': '-DINTEL_PFR_ENABLED',
+    'bmc-validation-unsecure-feature': '-DBMC_VALIDATION_UNSECURE_FEATURE',
+    'using-entity-manager-decorators': '-DUSING_ENTITY_MANAGER_DECORATORS',
 }
 
 foreach option_key, option_value : feature_map
-  if(get_option(option_key).allowed())
-    summary(option_key,option_value, section : 'Enabled Features')
-    add_project_arguments(option_value,language:'cpp')
-  endif
+    if (get_option(option_key).allowed())
+        summary(option_key, option_value, section: 'Enabled Features')
+        add_project_arguments(option_value, language: 'cpp')
+    endif
 endforeach
 
 cpp = meson.get_compiler('cpp')
-add_project_arguments(
-  cpp.get_supported_arguments(all_args),
-  language : 'cpp')
+add_project_arguments(cpp.get_supported_arguments(all_args), language: 'cpp')
 
 fs = import('fs')
 
@@ -56,68 +51,69 @@
 userlayer_dep = dependency('libuserlayer')
 
 
-tinyxml_dep = dependency('tinyxml2',
+tinyxml_dep = dependency(
+    'tinyxml2',
     default_options: ['tests=false'],
     include_type: 'system',
 )
 
-gpio_dep = dependency('libgpiodcxx',
-      default_options: ['bindings=cxx'],
-      )
+gpio_dep = dependency('libgpiodcxx', default_options: ['bindings=cxx'])
 
 zinteloemcmds_pre = declare_dependency(
-  include_directories: root_inc,
-  dependencies: [
-    channellayer_dep,
-    ipmid_dep,
-    gpio_dep,
-    nlohmann_json_dep,
-    phosphor_dbus_interfaces_dep,
-    phosphor_logging_dep,
-    sdbusplus_dep,
-    tinyxml_dep,
-    userlayer_dep,
-  ])
+    include_directories: root_inc,
+    dependencies: [
+        channellayer_dep,
+        ipmid_dep,
+        gpio_dep,
+        nlohmann_json_dep,
+        phosphor_dbus_interfaces_dep,
+        phosphor_logging_dep,
+        sdbusplus_dep,
+        tinyxml_dep,
+        userlayer_dep,
+    ],
+)
 
 prog_python = import('python').find_installation('python3')
 generate_allowlist_script = files('generate-allowlist.py')
 ipmiallowlist = custom_target(
     'ipmi-allowlist.hpp',
-    input: [generate_allowlist_script, 'ipmi-allowlist.conf' ],
+    input: [generate_allowlist_script, 'ipmi-allowlist.conf'],
     output: 'ipmi-allowlist.hpp',
-    command: [ prog_python, '@INPUT0@', '@INPUT1@', '@OUTPUT@' ],
-    )
+    command: [prog_python, '@INPUT0@', '@INPUT1@', '@OUTPUT@'],
+)
 
 zinteloemcmds_src = [
-  'src/oemcommands.cpp',
-  'src/sensorcommands.cpp',
-  'src/biosconfigcommands.cpp',
-  'src/storagecommands.cpp',
-  'src/multinodecommands.cpp',
-  'src/firmware-update.cpp',
-  'src/appcommands.cpp',
-  'src/smbiosmdrv2handler.cpp',
-  'src/manufacturingcommands.cpp',
-  'src/bmccontrolservices.cpp',
-  'src/bridgingcommands.cpp',
-  'src/ipmi_to_redfish_hooks.cpp',
-  'src/me_to_redfish_hooks.cpp',
-  'src/chassiscommands.cpp',
-  'src/allowlist-filter.cpp',
-  'src/fruutils.cpp',
-  ipmiallowlist,
+    'src/oemcommands.cpp',
+    'src/sensorcommands.cpp',
+    'src/biosconfigcommands.cpp',
+    'src/storagecommands.cpp',
+    'src/multinodecommands.cpp',
+    'src/firmware-update.cpp',
+    'src/appcommands.cpp',
+    'src/smbiosmdrv2handler.cpp',
+    'src/manufacturingcommands.cpp',
+    'src/bmccontrolservices.cpp',
+    'src/bridgingcommands.cpp',
+    'src/ipmi_to_redfish_hooks.cpp',
+    'src/me_to_redfish_hooks.cpp',
+    'src/chassiscommands.cpp',
+    'src/allowlist-filter.cpp',
+    'src/fruutils.cpp',
+    ipmiallowlist,
 ]
 
 zinteloemcmds_lib = library(
-  'zinteloemcmds',
-  sources: zinteloemcmds_src,
-  implicit_include_directories: false,
-  dependencies: zinteloemcmds_pre,
-  version: meson.project_version(),
-  override_options: ['b_lundef=false'],
-  install: true,
-  install_dir: get_option('libdir') / 'ipmid-providers')
+    'zinteloemcmds',
+    sources: zinteloemcmds_src,
+    implicit_include_directories: false,
+    dependencies: zinteloemcmds_pre,
+    version: meson.project_version(),
+    override_options: ['b_lundef=false'],
+    install: true,
+    install_dir: get_option('libdir') / 'ipmid-providers',
+)
 
 if get_option('tests').allowed()
-  subdir('tests')
+    subdir('tests')
 endif