-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vue-sfc-format.json.example
More file actions
47 lines (47 loc) · 971 Bytes
/
.vue-sfc-format.json.example
File metadata and controls
47 lines (47 loc) · 971 Bytes
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
{
"formatters": {
"template": {
"cmd": "npx",
"args": [
"js-beautify",
"--type", "html",
"--indent-size", "2",
"--wrap-attributes", "force-aligned",
"--wrap-line-length", "120",
"--indent-inner-html",
"--preserve-newlines",
"--max-preserve-newlines", "2"
]
},
"script": {
"cmd": "npx",
"args": [
"prettier",
"--parser", "babel",
"--semi", "false",
"--single-quote",
"--trailing-comma", "none",
"--tab-width", "2",
"--print-width", "120"
]
},
"style": {
"cmd": "npx",
"args": [
"prettier",
"--parser", "css",
"--tab-width", "2",
"--print-width", "120"
]
},
"style_scss": {
"cmd": "npx",
"args": [
"prettier",
"--parser", "scss",
"--tab-width", "2",
"--print-width", "120"
]
}
}
}