prettier: re-format

Prettier is enabled in openbmc-build-scripts on Markdown, JSON, and YAML
files to have consistent formatting for these file types.  Re-run the
formatter on the whole repository.

Change-Id: I5563d8a1a92828c12bf932d8b7ebd4968bdc05b2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/README.md b/README.md
index 945289b..2666554 100644
--- a/README.md
+++ b/README.md
@@ -8,14 +8,14 @@
 
 The interface defined in this document supports:
 
-*   Enumerating blobs
-*   Opening a blob for reading or writing
-*   Writing blob content
-*   Committing a blob
-*   Polling until the blob has been committed
-*   Closing a blob
-*   Reading blob content
-*   Deleting a blob
+- Enumerating blobs
+- Opening a blob for reading or writing
+- Writing blob content
+- Committing a blob
+- Polling until the blob has been committed
+- Closing a blob
+- Reading blob content
+- Deleting a blob
 
 Some blobs will only support a subset of these operations. For example, firmware
 cannot generally be read, as the firmware file is not persisted on the BMC after
@@ -40,8 +40,7 @@
 otherwise unrecognizable by the BMC, an error is returned.
 
 The OEM Number to use with these commands is
-[openbmc oen](https://github.com/openbmc/phosphor-host-ipmid/blob/194375f2676715a0e0697bab63234a4efe39fb96/include/ipmid/iana.hpp#L12)
-49871.
+[openbmc oen](https://github.com/openbmc/phosphor-host-ipmid/blob/194375f2676715a0e0697bab63234a4efe39fb96/include/ipmid/iana.hpp#L12) 49871.
 
 ## Commands
 
@@ -374,11 +373,11 @@
 
 The blob manager provides the following calling contract guarantees:
 
-*   The blob manager will only call `open()` on your handler if the handler
-    responds that they can handle the path.
-*   The blob manager will only call a session-based command against your handler
-    if that session is already open (e.g. `stat()` or `commit()`).
-    *   The caveat is the open command where the session is provided to the
-        handler within the call.
-*   The blob manager will only call `delete()` on a blob if there are no open
-    sessions to that blob id.
+- The blob manager will only call `open()` on your handler if the handler
+  responds that they can handle the path.
+- The blob manager will only call a session-based command against your handler
+  if that session is already open (e.g. `stat()` or `commit()`).
+  - The caveat is the open command where the session is provided to the handler
+    within the call.
+- The blob manager will only call `delete()` on a blob if there are no open
+  sessions to that blob id.