-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhxformat.json
53 lines (53 loc) · 1.38 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
{
"indentation": {
"trailingWhitespace": false,
"character": "tab"
},
"lineEnds": {
"emptyCurly": "noBreak",
"leftCurly": "after"
},
"sameLine": {
"elseIf": "same",
"elseBody": "same",
"doWhile": "same",
"forBody": "same",
"functionBody": "same",
"anonFunctionBody": "same"
},
"emptyLines": {
"afterBlocks": "keep",
"betweenMultilineComments": 0,
"maxAnywhereInFile": 1,
"betweenSingleLineTypes": 0,
"finalNewline": true,
"afterPackage": 1,
"betweenTypes": 1,
"afterReturn": "remove",
"classEmptyLines": {
"betweenStaticVars": 0,
"afterStaticFunctions": 0,
"afterStaticVars": 0,
"afterPrivateVars": 0,
"afterVars": 0,
"afterPrivateFunctions": 0,
"betweenFunctions": 0,
"betweenStaticFunctions": 0
}
},
"whitespace": {
"colonPolicy": "around",
"whilePolicy": "none",
"ifPolicy":"before",
"forPolicy": "none",
"switchPolicy": "none",
"typeParamOpenPolicy": "none",
"typeParamClosePolicy": "none",
"parenConfig": {
"funcParamParens": {
"openingPolicy": "none",
"closingPolicy": "none"
}
}
}
}