-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhxformat.json
106 lines (106 loc) · 2.66 KB
/
hxformat.json
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
102
103
104
105
106
{
"emptyLines": {
"afterFileHeaderComment": 0,
"abstractEmptyLines": {
"afterPrivateFunctions": 0,
"afterPrivateVars": 0,
"afterStaticFunctions": 0,
"afterStaticVars": 0,
"afterVars": 0,
"beginType": 1,
"betweenFunctions": 0,
"betweenStaticFunctions": 0,
"existingBetweenFields": "keep"
},
"classEmptyLines": {
"afterPrivateFunctions": 0,
"afterPrivateVars": 0,
"afterStaticFunctions": 0,
"afterStaticVars": 0,
"afterVars": 0,
"beginType": 1,
"betweenFunctions": 0,
"betweenStaticFunctions": 0,
"existingBetweenFields": "keep"
},
"externClassEmptyLines": {
"afterPrivateFunctions": 0,
"afterPrivateVars": 0,
"afterStaticFunctions": 0,
"afterStaticVars": 0,
"afterVars": 0,
"beginType": 0,
"betweenFunctions": 0,
"betweenStaticFunctions": 0,
"existingBetweenFields": "keep"
},
"enumAbstractEmptyLines": {
"afterVars": 0,
"beginType": 0,
"betweenFunctions": 0,
"betweenVars": 0,
"existingBetweenFields": "keep"
},
"interfaceEmptyLines": {
"afterPrivateFunctions": 1,
"afterPrivateVars": 1,
"afterStaticFunctions": 1,
"afterStaticVars": 1,
"afterVars": 1,
"beginType": 1,
"betweenFunctions": 1,
"betweenStaticFunctions": 1,
"existingBetweenFields": "remove"
},
"beforeDocCommentEmptyLines": "ignore",
"afterLeftCurly": "keep",
"betweenTypes": 2,
"maxAnywhereInFile": 2
},
"indentation": {
"character": " ",
"conditionalPolicy": "alignedIncrease",
"tabWidth": 3
},
"lineEnds": {
"emptyCurly": "break"
},
"sameLine": {
"caseBody": "keep",
"ifBody": "keep",
"functionBody": "keep"
},
"wrapping": {
"maxLineLength": 140,
"arrayWrap": {
"defaultWrap": "keep",
"rules": []
},
"callParameter": {
"rules": [
{
"conditions": [
{
"cond": "ItemCountLargerThan",
"value": 2
}
],
"type": "keep"
}
]
},
"methodChain": {
"rules": [
{
"conditions": [
{
"cond": "ItemCountLargerThan",
"value": 1
}
],
"type": "keep"
}
]
}
}
}