From b0ec904d35d714dbf5014cd71baafabe3df483f6 Mon Sep 17 00:00:00 2001 From: Marc G Date: Fri, 22 Nov 2024 04:59:15 +0100 Subject: [PATCH] support `primaryOptionArray` --- src/schema/stylelintrc.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/schema/stylelintrc.json b/src/schema/stylelintrc.json index 894a7f6..f33b9d1 100644 --- a/src/schema/stylelintrc.json +++ b/src/schema/stylelintrc.json @@ -5847,7 +5847,10 @@ "@[a-z\\d][\\w.-]+/.+": { "oneOf": [ { - "oneOf": [{ "const": true }, { "type": ["null", "string", "number", "object"] }] + "oneOf": [ + { "const": true }, + { "type": ["null", "string", "number", "object", "array"] } + ] }, { "type": "array", @@ -5855,7 +5858,10 @@ "maxItems": 2, "prefixItems": [ { - "oneOf": [{ "const": true }, { "type": ["null", "string", "number", "object"] }] + "oneOf": [ + { "const": true }, + { "type": ["null", "string", "number", "object", "array"] } + ] }, { "type": "object",