From 059de08b3abb5061f833c964525bf2b1e0138947 Mon Sep 17 00:00:00 2001 From: Ivan Ogasawara Date: Wed, 16 Oct 2024 23:54:55 -0400 Subject: [PATCH] fix: Fix specification of required attributes in schema.json (#132) --- src/sugar/schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sugar/schema.json b/src/sugar/schema.json index 32fe705..c5ab485 100644 --- a/src/sugar/schema.json +++ b/src/sugar/schema.json @@ -83,7 +83,7 @@ } } }, - "required": ["pre-run", "post-run"], + "required": [], "additionalProperties": false }, "groups": { @@ -135,7 +135,7 @@ "additionalProperties": false } }, - "required": ["config-path", "env-file", "services"], + "required": ["config-path", "services"], "additionalProperties": false } }, @@ -167,7 +167,7 @@ } } }, - "required": ["project-name", "config-path", "default", "available"], + "required": ["config-path", "available"], "additionalProperties": false } },