-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.liquidrc
69 lines (69 loc) · 1.53 KB
/
.liquidrc
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
{
"engine": "11ty",
"files": {
"includes": [
"./docs/src/views/include/*.liquid"
],
"data": [
"./docs/src/data/*.json"
]
},
"format": {
"wrap": 125,
"crlf": false,
"indentSize": 2,
"preserveLine": 1,
"endNewline": false,
"liquid": {
"commentIndent": true,
"commentNewline": true,
"dedentTagList": [
"schema"
],
"delimiterPlacement": "consistent",
"delimiterTrims": "never",
"lineBreakSeparator": "before",
"indentAttribute": true,
"normalizeSpacing": true,
"preserveComment": false,
"quoteConvert": "single",
"forceFilter": 3,
"forceArgument": 3
},
"markup": {
"quoteConvert": "double",
"lineBreakValue": "preserve",
"commentNewline": true,
"forceIndent": false,
"ignoreJS": false,
"forceAttribute": 2,
"preserveText": true
},
"json": {
"braceAllman": true,
"arrayFormat": "indent",
"objectIndent": "indent"
},
"style": {
"correct": true,
"commentNewline": true,
"commentIndent": true,
"noLeadZero": true,
"quoteConvert": "single",
"classPadding": true
},
"script": {
"correct": true,
"arrayFormat": "indent",
"objectIndent": "indent",
"methodChain": 3,
"caseSpace": true,
"quoteConvert": "single",
"elseNewline": true,
"functionNameSpace": true,
"functionSpace": true,
"commentNewline": true,
"noCaseIndent": true
}
}
}