This repository has been archived by the owner on Aug 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
sample-config.json
106 lines (106 loc) · 1.83 KB
/
sample-config.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
{
"version": 1,
"globals": {
"markup": {
"format": {
"comment": {
"enabled": true
}
},
"profile": {
"tagCase": "upper",
"attributeCase": "upper"
},
"options": {
"bem": {
"element": "_el",
"modifier": "-mod"
}
},
"variables": {
"lang": "ru",
"foo": "bar"
},
"snippets": {
"a": "a[href title]",
"list": "ul>li.item"
}
},
"stylesheet": {
"format": {
"shortHex": true,
"between": ":"
},
"profile": {
"tagCase": "upper",
"format": false
},
"snippets": {
"gd": "grid"
}
}
},
"syntax": {
"angular": {
"type": "markup",
"format": {
"comment": {
"enabled": false
}
},
"options": {
"jsx": true
},
"profile": {
"tagCase": "lower",
"attributeCase": "upper"
},
"snippets": {
"sw": "div[ngSwitch]"
}
},
"sugarss": {
"type": "stylesheet",
"format": {
"between": " ",
"after": ""
},
"snippets": {
"foo": "bar"
}
}
},
"project": {
"proj1": {
"globals": {
"markup": {
"profile": {
"tagCase": "upper",
"format": false
},
"snippets": {
"p1s": "div.proj1-snippet"
}
},
"stylesheet": {
"snippets": {
"gd": "baz"
}
}
},
"syntax": {
"sugarss": {
"format": {
"after": ";;"
},
"options": {
"intUnit": "cm",
"unitAliases": {
"a": "bbbb"
}
}
}
}
}
}
}