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

Delta Between Two Patch Sets: stylelint-config-eyeo/css-properties-order.js

Issue 29643562: Issue 5689 - Add rules for CSS declaration order to stylelint-config-eyeo (Closed) Base URL: https://hg.adblockplus.org/codingtools
Left Patch Set: Fkexible order of properties Created Jan. 23, 2018, 1:30 p.m.
Right Patch Set: Fixed trailing whitespace errors Created Feb. 8, 2018, 2:11 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « stylelint-config-eyeo/README.md ('k') | stylelint-config-eyeo/index.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 19 matching lines...) Expand all
30 "overflow-x", 30 "overflow-x",
31 "overflow-y", 31 "overflow-y",
32 "clip", 32 "clip",
33 "zoom", 33 "zoom",
34 "flex-direction", 34 "flex-direction",
35 "flex-order", 35 "flex-order",
36 "flex-pack", 36 "flex-pack",
37 "flex-align" 37 "flex-align"
38 ] 38 ]
39 }, 39 },
40 40
tlucas 2018/02/08 11:51:47 This line triggers a "trailing whitespace".
ire 2018/02/08 14:12:08 Done.
41 // Positioning 41 // Positioning
42 { 42 {
43 "order": "flexible", 43 "order": "flexible",
44 "properties": [ 44 "properties": [
45 "position", 45 "position",
46 "z-index", 46 "z-index",
47 "top", 47 "top",
48 "right", 48 "right",
49 "bottom", 49 "bottom",
50 "left" 50 "left"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "border-image-width", 103 "border-image-width",
104 "border-image-outset", 104 "border-image-outset",
105 "border-image-repeat", 105 "border-image-repeat",
106 "table-layout", 106 "table-layout",
107 "empty-cells", 107 "empty-cells",
108 "caption-side", 108 "caption-side",
109 "border-spacing", 109 "border-spacing",
110 "border-collapse" 110 "border-collapse"
111 ] 111 ]
112 }, 112 },
113 113
tlucas 2018/02/08 11:51:47 This line triggers a "trailing whitespace".
ire 2018/02/08 14:12:08 Done.
114 // Colors and Typography 114 // Colors and Typography
115 { 115 {
116 "order": "flexible", 116 "order": "flexible",
117 "properties": [ 117 "properties": [
118 "outline", 118 "outline",
119 "outline-width", 119 "outline-width",
120 "outline-style", 120 "outline-style",
121 "outline-color", 121 "outline-color",
122 "outline-offset", 122 "outline-offset",
123 "opacity", 123 "opacity",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "text-wrap", 172 "text-wrap",
173 "text-overflow", 173 "text-overflow",
174 "text-overflow-ellipsis", 174 "text-overflow-ellipsis",
175 "text-overflow-mode", 175 "text-overflow-mode",
176 "word-wrap", 176 "word-wrap",
177 "word-break", 177 "word-break",
178 "tab-size", 178 "tab-size",
179 "hyphens" 179 "hyphens"
180 ] 180 ]
181 }, 181 },
182 182
tlucas 2018/02/08 11:51:47 This line triggers a "trailing whitespace".
ire 2018/02/08 14:12:08 Done.
183 // Other 183 // Other
184 { 184 {
185 "order": "flexible", 185 "order": "flexible",
186 "properties": [ 186 "properties": [
187 "list-style", 187 "list-style",
188 "list-style-position", 188 "list-style-position",
189 "list-style-type", 189 "list-style-type",
190 "list-style-image", 190 "list-style-image",
191 "content", 191 "content",
192 "quotes", 192 "quotes",
(...skipping 21 matching lines...) Expand all
214 "animation-timing-function", 214 "animation-timing-function",
215 "animation-delay", 215 "animation-delay",
216 "animation-iteration-count", 216 "animation-iteration-count",
217 "animation-direction", 217 "animation-direction",
218 "backface-visibility", 218 "backface-visibility",
219 "text-rendering", 219 "text-rendering",
220 "pointer-events" 220 "pointer-events"
221 ] 221 ]
222 } 222 }
223 ]; 223 ];
LEFTRIGHT

Powered by Google App Engine
This is Rietveld