Add new system: Fix doc

GitHub is rendering this as terrible looking red highlighted text. Fix
by making this correct JSON. It appears to be caused by some JSON
validation.

[1]: https://github.com/openbmc/docs/blob/44f3de929bbee0dbacd024b9724fe72817fd1f48/development/add-new-system.md?plain=1#L371

This was introduced years ago by
[2]: https://github.com/openbmc/docs/commit/ace9cd140d93e92c82b9bd705efea599cc5118e6

The GitHub rendering engine could have changed in that time.

Now that this was correct syntax, prettier had an opinion.

Tested: Pushed to my fork and looks good.

Change-Id: Idddfb94269665640cd94c9d920a02c91953898e0
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/development/add-new-system.md b/development/add-new-system.md
index 9fe2abc..4f433e8 100644
--- a/development/add-new-system.md
+++ b/development/add-new-system.md
@@ -345,30 +345,29 @@
 
 ```json
 {
-    "gpio_configs": {
-         "power_config": {
-            "power_good_in": "SYS_PWROK_BUFF",
-            "power_up_outs": [
-                { "name": "SOFTWARE_PGOOD", "polarity": true},
-                { "name": "BMC_POWER_UP", "polarity": true}
-            ],
-            "reset_outs": [
-            ]
-        }
-    },
+  "gpio_configs": {
+    "power_config": {
+      "power_good_in": "SYS_PWROK_BUFF",
+      "power_up_outs": [
+        { "name": "SOFTWARE_PGOOD", "polarity": true },
+        { "name": "BMC_POWER_UP", "polarity": true }
+      ],
+      "reset_outs": []
+    }
+  },
 
-     "gpio_definitions": [
-        {
-            "name": "SOFTWARE_PGOOD",
-            "pin": "R1",
-            "direction": "out"
-        },
-        {
-            "name": "BMC_POWER_UP",
-            "pin": "D1",
-            "direction": "out"
-        },
-    ...
+  "gpio_definitions": [
+    {
+      "name": "SOFTWARE_PGOOD",
+      "pin": "R1",
+      "direction": "out"
+    },
+    {
+      "name": "BMC_POWER_UP",
+      "pin": "D1",
+      "direction": "out"
+    }
+  ]
 }
 ```