forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsscomb.json
123 lines (121 loc) · 3.38 KB
/
csscomb.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"title": "JSON schema for CSS Comb configuration files",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"exclude": {
"description": "An array of files/globbing patterns to ignore",
"type": "array",
"items": {
"type": "string"
}
},
"verbose": {
"type": "boolean"
},
"always-semicolon": {
"type": "boolean"
},
"block-indent": {
"description": "Whether to add a semicolon after the last value/mixin.",
"type": "string"
},
"color-case": {
"description": "Unify case of hexadecimal colors.",
"enum": [ "lower", "upper" ]
},
"color-shorthand": {
"description": "Whether to expand hexadecimal colors or use shorthands.",
"type": "boolean"
},
"element-case": {
"description": "Unify case of element selectors.",
"enum": [ "lower", "upper" ]
},
"eof-newline": {
"description": "Add/remove line break at EOF.",
"type": "boolean"
},
"leading-zero": {
"description": "Add/remove leading zero in dimensions.",
"type": "boolean"
},
"quotes": {
"description": "Unify quotes style.",
"enum": [ "single", "double" ]
},
"remove-empty-rulesets": {
"description": "Remove all rulesets that contain nothing but spaces.",
"type": "boolean"
},
"space-after-colon": {
"description": "Set space after `:` in declarations.",
"type": "string"
},
"space-after-combinator": {
"description": "Set space after combinator (for example, in selectors like `p > a`).",
"type": "string"
},
"space-after-opening-brace": {
"description": "Set space after `{`.",
"type": "string"
},
"space-after-selector-delimiter": {
"description": "Set space after selector delimiter.",
"type": "string"
},
"space-after-closing-brace": {
"description": "Set space before `}`.",
"type": "string"
},
"space-before-colon": {
"description": "Set space before `:` in declarations.",
"type": "string"
},
"space-before-combinator": {
"description": "Set space before combinator (for example, in selectors like `p > a`).",
"type": "string"
},
"space-before-opening-brace": {
"description": "Set space before `{`.",
"type": "string"
},
"space-before-selector-delimiter": {
"description": "Set space before selector delimiter.",
"type": "string"
},
"space-between-declarations": {
"description": "Set space between declarations (i.e. `color: tomato`).",
"type": "string"
},
"strip-spaces": {
"description": "Whether to trim trailing spaces.",
"type": "boolean"
},
"unitless-zero": {
"description": "Whether to remove units in zero-valued dimensions.",
"type": "boolean"
},
"vendor-prefix-align": {
"description": "Whether to align prefixes in properties and values.",
"type": "boolean"
},
"sort-order": {
"description": "Sort properties in particular order.",
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"tab-size": {
"type": "boolean"
},
"sort-order-fallback": {
"description": "Sort unknown properties alphabetically",
"enum": [ "abc" ]
}
}
}