You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -231,6 +231,22 @@
231
231
"markdownDescription": "Insert space before end of self closing tag. \nExample:\n ```<tag/> -> <tag />```. Default is `true`. See [here](https://github.com/redhat-developer/vscode-xml/wiki/Formatting#xmlformatspacebeforeemptyclosetag-) for more information.",
232
232
"scope": "window"
233
233
},
234
+
"xml.format.xsiSchemaLocationSplit": {
235
+
"type": "string",
236
+
"enum": [
237
+
"onElement",
238
+
"onPair",
239
+
"none"
240
+
],
241
+
"markdownEnumDescriptions": [
242
+
"Put a new line after each namespace and URI, arranging them into one column.",
243
+
"Put a new line after each URI, arranging the content into pairs of namespace and URI.",
244
+
"Ignore `xsi:schemaLocation` content formatting."
245
+
],
246
+
"default": "none",
247
+
"markdownDescription": "Split `xsi:schemaLocation` content. Default is `none`",
0 commit comments