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