-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.esformatter
More file actions
43 lines (38 loc) · 810 Bytes
/
.esformatter
File metadata and controls
43 lines (38 loc) · 810 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
{
"preset": "default",
"plugins": [
"esformatter-quotes",
"esformatter-semicolons",
"esformatter-literal-notation",
"esformatter-parseint",
"esformatter-spaced-lined-comment",
"esformatter-var-each",
"esformatter-collapse-objects",
"esformatter-remove-trailing-commas",
"esformatter-quote-props"
],
"quotes": {
"type": "single"
},
"collapseObjects": {
"ObjectExpression": {
"maxLineLength": 79,
"maxKeys": 1
}
},
"indent" : {
"value": " ",
"AlignComments": false
},
"whiteSpace": {
"before": {
"ObjectExpressionClosingBrace": 0,
"ModuleSpecifierClosingBrace": 0,
"PropertyName": 1
},
"after": {
"ObjectExpressionOpeningBrace": 0,
"ModuleSpecifierOpeningBrace": 0
}
}
}