-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
plugin.js
80 lines (78 loc) · 2.05 KB
/
plugin.js
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
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."
}
]
}
},
defaultOptions: {
printWidth: 80,
tabWidth: 2
}
};
export default plugin;