Skip to content

Commit

Permalink
add missing options to dprint config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane committed Mar 24, 2024
1 parent 21c1a3e commit 45064a9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions dprint_plugin/deployment/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@
"linebreakInPseudoParens": {
"type": "boolean",
"default": false
},
"declarationOrder": {
"type": ["string", "null"],
"enum": ["alphabetical", "smacss", "concentric"],
"default": null
},
"singleLineBlockThreshold": {
"type": ["integer", "null"],
"default": null,
"minimum": 0
}
}
}

0 comments on commit 45064a9

Please sign in to comment.