-
Notifications
You must be signed in to change notification settings - Fork 0
/
.esformatter
59 lines (53 loc) · 1.38 KB
/
.esformatter
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
{
"preset": "default",
"plugins": [
"esformatter-quotes",
"esformatter-spaced-lined-comment",
"esformatter-collapse-objects",
"esformatter-remove-trailing-commas",
"esformatter-jsx"
],
"collapseObjects": {
"ObjectExpression": {
"maxLineLength": 79,
"maxKeys": 0
}
},
"quotes": {
"type": "double"
},
"indent": {
"value": " ",
"AlignComments": false
},
"whiteSpace": {
"before": {
"ObjectExpressionClosingBrace": 0,
"ModuleSpecifierClosingBrace": 1,
"PropertyName": 1
},
"after": {
"ObjectExpressionOpeningBrace": 0,
"ModuleSpecifierOpeningBrace": 1
}
},
"jsx": {
"formatJSXExpressions": true,
"JSXExpressionsSingleLine": false,
"formatJSX": true,
"attrsOnSameLineAsTag": false,
"maxAttrsOnTag": 1,
"firstAttributeOnSameLine": false,
"spaceInJSXExpressionContainers": "",
"alignWithFirstAttribute": false,
"closingTagOnNewLine": true,
"htmlOptions": {
"brace_style": "collapse",
"indent_char": " ",
"indent_size": 2,
"max_preserve_newlines": 2,
"preserve_newlines": true,
"wrap_line_length": 250
}
}
}