Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: .csscomb.json

Issue 29346536: Issue 4155 - Created global csscomb config (Closed)
Patch Set: Added lines-between-rulesets, removed proprietary/unsupported css properties, grouped sort-order by… Created Sept. 16, 2016, 7:51 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "lines-between-rulesets": 1,
3 "remove-empty-rulesets": true,
4 "always-semicolon": true,
5 "color-case": "lower",
6 "block-indent": " ",
7 "color-shorthand": true,
8 "element-case": "lower",
9 "eof-newline": true,
10 "leading-zero": true,
11 "quotes": "double",
12 "space-before-colon": "",
13 "space-after-colon": " ",
14 "space-before-combinator": " ",
15 "space-after-combinator": " ",
16 "space-between-declarations": "\n",
17 "space-before-opening-brace": "\n",
18 "space-after-opening-brace": "\n",
19 "space-after-selector-delimiter": "\n",
20 "space-before-selector-delimiter": "",
21 "space-before-closing-brace": "\n",
22 "strip-spaces": true,
23 "tab-size": 2,
24 "sort-order-fallback": "abc",
25 "sort-order": [
26 "display",
27 "visibility",
28
29 "position",
30 "top",
31 "right",
32 "bottom",
33 "left",
34 "float",
35 "clear",
36 "z-index",
37
38 "flex-direction",
Thomas Greiner 2016/09/19 11:57:11 Detail: What about the "flex" shorthand property?
juliandoucette 2016/10/13 12:15:15 Done.
39 "flex-order",
40 "flex-pack",
41 "flex-align",
42 "box-sizing",
43 "table-layout",
44 "empty-cells",
45 "border-spacing",
46 "border-collapse",
47 "overflow",
48 "overflow-x",
49 "overflow-y",
50 "width",
51 "min-width",
52 "max-width",
53 "height",
54 "min-height",
55 "max-height",
56 "margin",
57 "margin-top",
58 "margin-right",
59 "margin-bottom",
60 "margin-left",
61 "padding",
62 "padding-top",
63 "padding-right",
64 "padding-bottom",
65 "padding-left",
66 "border",
67 "border-collapse",
68 "border-width",
69 "border-style",
70 "border-color",
71 "border-top",
72 "border-top-width",
73 "border-top-style",
74 "border-top-color",
75 "border-right",
76 "border-right-width",
77 "border-right-style",
78 "border-right-color",
79 "border-bottom",
80 "border-bottom-width",
81 "border-bottom-style",
82 "border-bottom-color",
83 "border-left",
84 "border-left-width",
85 "border-left-style",
86 "border-left-color",
87 "border-radius",
88 "border-top-left-radius",
89 "border-top-right-radius",
90 "border-bottom-right-radius",
91 "border-bottom-left-radius",
92 "border-image",
93 "border-image-source",
94 "border-image-slice",
95 "border-image-width",
96 "border-image-outset",
97 "border-image-repeat",
98 "outline",
99 "outline-width",
100 "outline-style",
101 "outline-color",
102 "outline-offset",
103 "box-shadow",
104 "box-shadow",
105 "box-shadow",
106 "box-shadow",
Thomas Greiner 2016/09/19 11:57:11 Detail: Duplicated values.
juliandoucette 2016/10/13 12:15:15 Done.
107 "text-shadow",
108
109 "color",
110 "opacity",
111 "background",
112 "background-color",
113 "background-image",
114 "background-repeat",
115 "background-attachment",
116 "background-position",
117 "background-position-x",
118 "background-position-y",
119 "background-clip",
120 "background-origin",
121 "background-size",
122
123 "font",
124 "font-family",
125 "font-size",
126 "font-weight",
127 "font-style",
128 "font-variant",
129 "line-height",
130 "text-align",
131 "text-align-last",
132 "vertical-align",
133 "white-space",
134 "text-decoration",
135 "text-transform",
136 "letter-spacing",
137 "word-spacing",
138 "text-transform",
139 "text-overflow",
140 "text-overflow-ellipsis",
141 "text-overflow-mode",
142 "word-wrap",
143 "word-break",
144 "tab-size",
145
146 "content",
147 "quotes",
148 "cursor",
149 "counter-reset",
150 "counter-increment",
151 "list-style",
152 "list-style-position",
153 "list-style-type",
154 "list-style-image",
155
156 "transition",
157 "transition-delay",
158 "transition-timing-function",
159 "transition-duration",
160 "transition-property",
161 "transform",
162 "transform-origin",
163 "animation",
164 "animation-name",
165 "animation-duration",
166 "animation-play-state",
167 "animation-timing-function",
168 "animation-delay",
169 "animation-iteration-count",
170 "animation-iteration-count",
171 "animation-direction"
172 ]
173 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld