@mrhenry/stylelint-mrhenry-prop-order 3.1.8 → 3.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/order.mjs +23 -1
- package/package.json +3 -3
package/order.mjs
CHANGED
|
@@ -107,6 +107,28 @@ export const order = [
|
|
|
107
107
|
"border-left-style",
|
|
108
108
|
"border-left-width",
|
|
109
109
|
|
|
110
|
+
"corner",
|
|
111
|
+
// logical shorthands
|
|
112
|
+
"corner-inline-start",
|
|
113
|
+
"corner-inline-end",
|
|
114
|
+
"corner-block-start",
|
|
115
|
+
"corner-block-end",
|
|
116
|
+
// logical longhands
|
|
117
|
+
"corner-start-start",
|
|
118
|
+
"corner-start-end",
|
|
119
|
+
"corner-end-end",
|
|
120
|
+
"corner-end-start",
|
|
121
|
+
// physical shorthands
|
|
122
|
+
"corner-top",
|
|
123
|
+
"corner-right",
|
|
124
|
+
"corner-bottom",
|
|
125
|
+
"corner-left",
|
|
126
|
+
// physical longhands
|
|
127
|
+
"corner-top-left",
|
|
128
|
+
"corner-top-right",
|
|
129
|
+
"corner-bottom-left",
|
|
130
|
+
"corner-bottom-right",
|
|
131
|
+
|
|
110
132
|
"border-radius",
|
|
111
133
|
// border radius logical shorthands
|
|
112
134
|
"border-inline-start-radius",
|
|
@@ -294,7 +316,7 @@ export const order = [
|
|
|
294
316
|
"rule-color",
|
|
295
317
|
"rule-break",
|
|
296
318
|
"rule-outset",
|
|
297
|
-
"rule-
|
|
319
|
+
"rule-overlap",
|
|
298
320
|
"row-gap",
|
|
299
321
|
"row-rule",
|
|
300
322
|
"row-rule-width",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrhenry/stylelint-mrhenry-prop-order",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.10",
|
|
4
4
|
"description": "Mr. Henry's preferred order for CSS properties",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.mjs",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"stylelint-plugin"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"stylelint": "^16.
|
|
30
|
+
"stylelint": "^16.24.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"css-tree": "^3.1.0",
|
|
34
|
-
"stylelint": "^16.
|
|
34
|
+
"stylelint": "^16.24.0"
|
|
35
35
|
}
|
|
36
36
|
}
|