meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: I116103d8e0994e09ecb6381f5bb7d564608826b2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/cleanup/meson.build b/cleanup/meson.build
index 0e8f031..6af1b7e 100644
--- a/cleanup/meson.build
+++ b/cleanup/meson.build
@@ -1,30 +1,31 @@
 cleanup_pre = declare_dependency(
-  include_directories: [root_inc, include_directories('.')],
-  dependencies: blobs_dep)
+    include_directories: [root_inc, include_directories('.')],
+    dependencies: blobs_dep,
+)
 
 cleanup_lib = static_library(
-  'firmwarecleanupblob',
-  'cleanup.cpp',
-  'fs.cpp',
-  conf_h,
-  implicit_include_directories: false,
-  dependencies: cleanup_pre)
+    'firmwarecleanupblob',
+    'cleanup.cpp',
+    'fs.cpp',
+    conf_h,
+    implicit_include_directories: false,
+    dependencies: cleanup_pre,
+)
 
 cleanup_dep = declare_dependency(
-  link_with: cleanup_lib,
-  dependencies: cleanup_pre)
+    link_with: cleanup_lib,
+    dependencies: cleanup_pre,
+)
 
 shared_module(
-  'firmwarecleanupblob',
-  'main.cpp',
-  implicit_include_directories: false,
-  dependencies: [
-    cleanup_dep,
-    dependency('libipmid'),
-  ],
-  install: true,
-  install_dir: get_option('libdir') / 'blob-ipmid')
+    'firmwarecleanupblob',
+    'main.cpp',
+    implicit_include_directories: false,
+    dependencies: [cleanup_dep, dependency('libipmid')],
+    install: true,
+    install_dir: get_option('libdir') / 'blob-ipmid',
+)
 
 if get_option('tests').allowed()
-  subdir('test')
+    subdir('test')
 endif