From 27f10d76db9930cac67c63bfbaf6f3e381e10ab3 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 28 Apr 2024 15:05:53 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=BA=20Update=20schema=20validation,=20?= =?UTF-8?q?disable=20strict=20for=20multi=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/config-validator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/config-validator.js b/services/config-validator.js index f7786e0e..372f432a 100644 --- a/services/config-validator.js +++ b/services/config-validator.js @@ -11,7 +11,7 @@ const schema = require('../src/utils/ConfigSchema.json'); /* Tell AJV to use strict mode, and report all errors */ const validatorOptions = { - strict: true, + strict: false, allowUnionTypes: true, allErrors: true, };