-
Notifications
You must be signed in to change notification settings - Fork 2
/
.liquidrc
96 lines (96 loc) · 2.02 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
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
{
"engine": "11ty",
"files": {
"data": [
"./docs/src/data/*.js"
],
"includes": [
"./docs/src/views/include/*.liquid"
]
},
"format": {
"wrap": 120,
"crlf": false,
"indentSize": 2,
"preserveLine": 1,
"endNewline": false,
"wrapFraction": 90,
"liquid": {
"commentIndent": true,
"commentNewline": true,
"dedentTagList": [
"schema"
],
"delimiterPlacement": "preserve",
"delimiterTrims": "never",
"lineBreakSeparator": "before",
"indentAttribute": true,
"normalizeSpacing": true,
"preserveComment": false,
"quoteConvert": "single",
"ignoreTagList": [
"capture"
],
"forceFilter": 3,
"forceArgument": 3
},
"markup": {
"quoteConvert": "double",
"lineBreakValue": "preserve",
"commentNewline": true,
"attributeSort": [
"method",
"accept-charset",
"type",
"for",
"name",
"href",
"itemscope",
"itemprop",
"src",
"spx-",
"data-src",
"alt",
"loading",
"title",
"id",
"class",
"aria-label",
"aria-hidden",
"data-controller",
"height",
"width"
],
"forceAttribute": 2,
"delimiterTerminus": "inline",
"ignoreJS": false,
"preserveText": false
},
"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
}
}
}