Skip to content

Commit

Permalink
support primaryOptionArray
Browse files Browse the repository at this point in the history
  • Loading branch information
Mouvedia committed Nov 22, 2024
1 parent d93ca2a commit b0ec904
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/schema/stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5847,15 +5847,21 @@
"@[a-z\\d][\\w.-]+/.+": {
"oneOf": [
{
"oneOf": [{ "const": true }, { "type": ["null", "string", "number", "object"] }]
"oneOf": [
{ "const": true },
{ "type": ["null", "string", "number", "object", "array"] }
]
},
{
"type": "array",
"minItems": 1,
"maxItems": 2,
"prefixItems": [
{
"oneOf": [{ "const": true }, { "type": ["null", "string", "number", "object"] }]
"oneOf": [
{ "const": true },
{ "type": ["null", "string", "number", "object", "array"] }
]
},
{
"type": "object",
Expand Down

0 comments on commit b0ec904

Please sign in to comment.