From 6fc1b1d3cdf7ec46fd92510b3153bf8c55f6bbf2 Mon Sep 17 00:00:00 2001 From: andrew <1297077+andrewmd5@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:58:58 +0900 Subject: [PATCH] fix(playground): schema validation upgrade the default of JSON schema errors being warnings --- playground/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playground/src/index.ts b/playground/src/index.ts index ef77bc95..a51b541d 100644 --- a/playground/src/index.ts +++ b/playground/src/index.ts @@ -157,6 +157,7 @@ const configureMonaco = () => { fileMatch: ["bebop.json"], }, ], + schemaValidation: "error" }); }; @@ -205,6 +206,8 @@ const createEditor = ( formatOnPaste: true, formatOnType: true, }); + editor.updateOptions({ wordWrap: "on" }); + return { editor,