-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathplugin.js
More file actions
101 lines (99 loc) · 2.6 KB
/
plugin.js
File metadata and controls
101 lines (99 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import languages from "./languages.js";
import parser from "./parser.js";
import printer from "./printer.js";
const plugin = {
languages,
parsers: {
xml: parser
},
printers: {
xml: printer
},
options: {
xmlSelfClosingSpace: {
type: "boolean",
category: "XML",
default: true,
description: "Adds a space before self-closing tags.",
since: "1.1.0"
},
xmlWhitespaceSensitivity: {
type: "choice",
category: "XML",
default: "strict",
description: "How to handle whitespaces in XML.",
choices: [
{
value: "strict",
description: "Whitespaces are considered sensitive in all elements."
},
{
value: "preserve",
description:
"Whitespaces within text nodes in XML elements and attributes are considered sensitive."
},
{
value: "ignore",
description: "Whitespaces are considered insensitive in all elements."
}
],
since: "0.6.0"
},
xmlSortAttributesByKey: {
type: "boolean",
category: "XML",
default: false,
description:
"Orders XML attributes by key alphabetically while prioritizing xmlns attributes."
},
xmlQuoteAttributes: {
type: "choice",
category: "XML",
default: "preserve",
description: "How to handle whitespaces in XML.",
choices: [
{
value: "preserve",
description:
"Quotes in attribute values will be preserved as written."
},
{
value: "single",
description:
"Quotes in attribute values will be converted to consistent single quotes and other quotes in the string will be escaped."
},
{
value: "double",
description:
"Quotes in attribute values will be converted to consistent double quotes and other quotes in the string will be escaped."
}
]
},
xmlSelfClosingTags: {
type: "choice",
category: "XML",
default: "always",
description: "Controls how empty XML tags are formatted.",
choices: [
{
value: "always",
description: "Convert empty tags to self-closing format."
},
{
value: "preserve",
description: "Preserve tags as written in source."
},
{
value: "never",
description: "Convert self-closing tags to empty open/close format."
}
],
since: "3.5.0"
}
},
defaultOptions: {
printWidth: 80,
tabWidth: 2
}
};
export default plugin;