@mrhenry/stylelint-mrhenry-prop-order 1.0.8 → 1.0.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.js +35 -17
- package/package.json +2 -2
package/order.js
CHANGED
|
@@ -52,15 +52,16 @@ module.exports = [
|
|
|
52
52
|
"bookmark-label",
|
|
53
53
|
"bookmark-level",
|
|
54
54
|
"bookmark-state",
|
|
55
|
+
// border
|
|
55
56
|
"border",
|
|
56
57
|
"border-color",
|
|
57
|
-
"border-limit",
|
|
58
|
-
"border-radius",
|
|
59
|
-
"border-spacing",
|
|
60
58
|
"border-style",
|
|
61
59
|
"border-width",
|
|
60
|
+
// border inline
|
|
62
61
|
"border-inline",
|
|
63
62
|
"border-inline-color",
|
|
63
|
+
"border-inline-style",
|
|
64
|
+
"border-inline-width",
|
|
64
65
|
"border-inline-start",
|
|
65
66
|
"border-inline-start-color",
|
|
66
67
|
"border-inline-start-style",
|
|
@@ -69,10 +70,11 @@ module.exports = [
|
|
|
69
70
|
"border-inline-end-color",
|
|
70
71
|
"border-inline-end-style",
|
|
71
72
|
"border-inline-end-width",
|
|
72
|
-
|
|
73
|
-
"border-inline-width",
|
|
73
|
+
// border block
|
|
74
74
|
"border-block",
|
|
75
75
|
"border-block-color",
|
|
76
|
+
"border-block-style",
|
|
77
|
+
"border-block-width",
|
|
76
78
|
"border-block-start",
|
|
77
79
|
"border-block-start-color",
|
|
78
80
|
"border-block-start-style",
|
|
@@ -81,12 +83,9 @@ module.exports = [
|
|
|
81
83
|
"border-block-end-color",
|
|
82
84
|
"border-block-end-style",
|
|
83
85
|
"border-block-end-width",
|
|
84
|
-
|
|
85
|
-
"border-block-width",
|
|
86
|
+
// border top, right, bottom, left
|
|
86
87
|
"border-top",
|
|
87
88
|
"border-top-color",
|
|
88
|
-
"border-top-left-radius",
|
|
89
|
-
"border-top-right-radius",
|
|
90
89
|
"border-top-style",
|
|
91
90
|
"border-top-width",
|
|
92
91
|
"border-right",
|
|
@@ -95,24 +94,41 @@ module.exports = [
|
|
|
95
94
|
"border-right-width",
|
|
96
95
|
"border-bottom",
|
|
97
96
|
"border-bottom-color",
|
|
98
|
-
"border-bottom-left-radius",
|
|
99
|
-
"border-bottom-right-radius",
|
|
100
97
|
"border-bottom-style",
|
|
101
98
|
"border-bottom-width",
|
|
102
99
|
"border-left",
|
|
103
100
|
"border-left-color",
|
|
104
101
|
"border-left-style",
|
|
105
102
|
"border-left-width",
|
|
103
|
+
// border radius logical shorthands
|
|
104
|
+
"border-inline-start-radius",
|
|
105
|
+
"border-inline-end-radius",
|
|
106
|
+
"border-block-start-radius",
|
|
107
|
+
"border-block-end-radius",
|
|
108
|
+
// border radius logical longhands
|
|
106
109
|
"border-start-start-radius",
|
|
107
110
|
"border-start-end-radius",
|
|
108
111
|
"border-end-end-radius",
|
|
109
112
|
"border-end-start-radius",
|
|
113
|
+
// border radius physical shorthands
|
|
114
|
+
"border-top-radius",
|
|
115
|
+
"border-right-radius",
|
|
116
|
+
"border-bottom-radius",
|
|
117
|
+
"border-left-radius",
|
|
118
|
+
// border radius physical longhands
|
|
119
|
+
"border-top-left-radius",
|
|
120
|
+
"border-top-right-radius",
|
|
121
|
+
"border-bottom-left-radius",
|
|
122
|
+
"border-bottom-right-radius",
|
|
110
123
|
"border-boundary",
|
|
124
|
+
"border-limit",
|
|
125
|
+
"border-radius",
|
|
126
|
+
"border-spacing",
|
|
111
127
|
"border-clip",
|
|
128
|
+
"border-clip-top",
|
|
129
|
+
"border-clip-right",
|
|
112
130
|
"border-clip-bottom",
|
|
113
131
|
"border-clip-left",
|
|
114
|
-
"border-clip-right",
|
|
115
|
-
"border-clip-top",
|
|
116
132
|
"border-collapse",
|
|
117
133
|
"border-image",
|
|
118
134
|
"border-image-outset",
|
|
@@ -536,6 +552,8 @@ module.exports = [
|
|
|
536
552
|
"text-space-collapse",
|
|
537
553
|
"text-space-trim",
|
|
538
554
|
"text-spacing",
|
|
555
|
+
"text-autospace",
|
|
556
|
+
"text-spacing-trim",
|
|
539
557
|
"text-transform",
|
|
540
558
|
"text-underline-offset",
|
|
541
559
|
"text-underline-position",
|
|
@@ -576,16 +594,16 @@ module.exports = [
|
|
|
576
594
|
"white-space",
|
|
577
595
|
"widows",
|
|
578
596
|
"width",
|
|
579
|
-
"height",
|
|
580
597
|
"min-width",
|
|
581
|
-
"min-height",
|
|
582
598
|
"max-width",
|
|
599
|
+
"height",
|
|
600
|
+
"min-height",
|
|
583
601
|
"max-height",
|
|
584
602
|
"inline-size",
|
|
585
|
-
"block-size",
|
|
586
603
|
"min-inline-size",
|
|
587
|
-
"min-block-size",
|
|
588
604
|
"max-inline-size",
|
|
605
|
+
"block-size",
|
|
606
|
+
"min-block-size",
|
|
589
607
|
"max-block-size",
|
|
590
608
|
"will-change",
|
|
591
609
|
"word-boundary-detection",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrhenry/stylelint-mrhenry-prop-order",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Mr. Henry's preferred order for CSS properties",
|
|
5
5
|
"main": "stylelint-mrhenry-prop-order.js",
|
|
6
6
|
"scripts": {
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"stylelint": "^14.16.1 || ^15.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"stylelint": "^15.
|
|
36
|
+
"stylelint": "^15.2.0"
|
|
37
37
|
}
|
|
38
38
|
}
|