diff --git a/src/schema/stylelintrc.json b/src/schema/stylelintrc.json index a3b7b30..f33b9d1 100644 --- a/src/schema/stylelintrc.json +++ b/src/schema/stylelintrc.json @@ -5843,6 +5843,35 @@ ] } }, + "patternProperties": { + "@[a-z\\d][\\w.-]+/.+": { + "oneOf": [ + { + "oneOf": [ + { "const": true }, + { "type": ["null", "string", "number", "object", "array"] } + ] + }, + { + "type": "array", + "minItems": 1, + "maxItems": 2, + "prefixItems": [ + { + "oneOf": [ + { "const": true }, + { "type": ["null", "string", "number", "object", "array"] } + ] + }, + { + "type": "object", + "allOf": [{ "$ref": "#/$defs/commonOptions" }] + } + ] + } + ] + } + }, "additionalProperties": false } }