meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: I4cc78e59d8341dd5ea54ee2793afdab179b259e8
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.options b/meson.options
new file mode 100644
index 0000000..3d96d46
--- /dev/null
+++ b/meson.options
@@ -0,0 +1,17 @@
+option(
+    'erase_min_geometry',
+    type: 'integer',
+    min: 0,
+    max: 18446744073709551615,
+    value: 10,
+    description: 'The min size allowed in bytes, used by the geometry check',
+)
+option(
+    'erase_max_geometry',
+    type: 'integer',
+    min: 0,
+    max: 18446744073709551615,
+    value: 5368709120,
+    description: 'the max size allowed in bytes, used by the geometry check',
+)
+option('tests', type: 'feature', value: 'enabled', description: 'Build tests')