@mrhenry/stylelint-mrhenry-prop-order 1.0.7 → 1.0.9
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 +66 -45
- package/package.json +3 -3
- package/stylelint-mrhenry-prop-order.js +1 -1
package/order.js
CHANGED
|
@@ -12,8 +12,6 @@ module.exports = [
|
|
|
12
12
|
"animation",
|
|
13
13
|
"animation-composition",
|
|
14
14
|
"animation-delay",
|
|
15
|
-
"animation-delay-start",
|
|
16
|
-
"animation-delay-end",
|
|
17
15
|
"animation-direction",
|
|
18
16
|
"animation-duration",
|
|
19
17
|
"animation-fill-mode",
|
|
@@ -21,6 +19,8 @@ module.exports = [
|
|
|
21
19
|
"animation-name",
|
|
22
20
|
"animation-play-state",
|
|
23
21
|
"animation-range",
|
|
22
|
+
"animation-range-start",
|
|
23
|
+
"animation-range-end",
|
|
24
24
|
"animation-timeline",
|
|
25
25
|
"animation-timing-function",
|
|
26
26
|
"appearance",
|
|
@@ -52,67 +52,86 @@ module.exports = [
|
|
|
52
52
|
"bookmark-label",
|
|
53
53
|
"bookmark-level",
|
|
54
54
|
"bookmark-state",
|
|
55
|
+
// border
|
|
55
56
|
"border",
|
|
56
|
-
|
|
57
|
-
"border-limit",
|
|
58
|
-
"border-radius",
|
|
59
|
-
"border-spacing",
|
|
60
|
-
"border-style",
|
|
61
|
-
"border-width",
|
|
57
|
+
// border inline
|
|
62
58
|
"border-inline",
|
|
63
|
-
"border-inline-color",
|
|
64
59
|
"border-inline-start",
|
|
65
|
-
"border-inline-start-color",
|
|
66
|
-
"border-inline-start-style",
|
|
67
|
-
"border-inline-start-width",
|
|
68
60
|
"border-inline-end",
|
|
69
|
-
|
|
70
|
-
"border-inline-end-style",
|
|
71
|
-
"border-inline-end-width",
|
|
72
|
-
"border-inline-style",
|
|
73
|
-
"border-inline-width",
|
|
61
|
+
// border block
|
|
74
62
|
"border-block",
|
|
75
|
-
"border-block-color",
|
|
76
63
|
"border-block-start",
|
|
77
|
-
"border-block-start-color",
|
|
78
|
-
"border-block-start-style",
|
|
79
|
-
"border-block-start-width",
|
|
80
64
|
"border-block-end",
|
|
81
|
-
|
|
82
|
-
"border-block-end-style",
|
|
83
|
-
"border-block-end-width",
|
|
84
|
-
"border-block-style",
|
|
85
|
-
"border-block-width",
|
|
65
|
+
// border top, right, bottom, left
|
|
86
66
|
"border-top",
|
|
87
|
-
"border-top-color",
|
|
88
|
-
"border-top-left-radius",
|
|
89
|
-
"border-top-right-radius",
|
|
90
|
-
"border-top-style",
|
|
91
|
-
"border-top-width",
|
|
92
67
|
"border-right",
|
|
93
|
-
"border-right-color",
|
|
94
|
-
"border-right-style",
|
|
95
|
-
"border-right-width",
|
|
96
68
|
"border-bottom",
|
|
97
|
-
"border-bottom-color",
|
|
98
|
-
"border-bottom-left-radius",
|
|
99
|
-
"border-bottom-right-radius",
|
|
100
|
-
"border-bottom-style",
|
|
101
|
-
"border-bottom-width",
|
|
102
69
|
"border-left",
|
|
70
|
+
// border color
|
|
71
|
+
"border-color",
|
|
72
|
+
"border-inline-color",
|
|
73
|
+
"border-inline-start-color",
|
|
74
|
+
"border-inline-end-color",
|
|
75
|
+
"border-block-color",
|
|
76
|
+
"border-block-start-color",
|
|
77
|
+
"border-block-end-color",
|
|
78
|
+
"border-top-color",
|
|
79
|
+
"border-right-color",
|
|
80
|
+
"border-bottom-color",
|
|
103
81
|
"border-left-color",
|
|
82
|
+
// border style
|
|
83
|
+
"border-style",
|
|
84
|
+
"border-inline-style",
|
|
85
|
+
"border-inline-start-style",
|
|
86
|
+
"border-inline-end-style",
|
|
87
|
+
"border-block-style",
|
|
88
|
+
"border-block-start-style",
|
|
89
|
+
"border-block-end-style",
|
|
90
|
+
"border-top-style",
|
|
91
|
+
"border-right-style",
|
|
92
|
+
"border-bottom-style",
|
|
104
93
|
"border-left-style",
|
|
94
|
+
// border width
|
|
95
|
+
"border-width",
|
|
96
|
+
"border-inline-width",
|
|
97
|
+
"border-inline-start-width",
|
|
98
|
+
"border-inline-end-width",
|
|
99
|
+
"border-block-width",
|
|
100
|
+
"border-block-start-width",
|
|
101
|
+
"border-block-end-width",
|
|
102
|
+
"border-top-width",
|
|
103
|
+
"border-right-width",
|
|
104
|
+
"border-bottom-width",
|
|
105
105
|
"border-left-width",
|
|
106
|
+
// border radius logical shorthands
|
|
107
|
+
"border-inline-start-radius",
|
|
108
|
+
"border-inline-end-radius",
|
|
109
|
+
"border-block-start-radius",
|
|
110
|
+
"border-block-end-radius",
|
|
111
|
+
// border radius logical longhands
|
|
106
112
|
"border-start-start-radius",
|
|
107
113
|
"border-start-end-radius",
|
|
108
114
|
"border-end-end-radius",
|
|
109
115
|
"border-end-start-radius",
|
|
116
|
+
// border radius physical shorthands
|
|
117
|
+
"border-top-radius",
|
|
118
|
+
"border-right-radius",
|
|
119
|
+
"border-bottom-radius",
|
|
120
|
+
"border-left-radius",
|
|
121
|
+
// border radius physical longhands
|
|
122
|
+
"border-top-left-radius",
|
|
123
|
+
"border-top-right-radius",
|
|
124
|
+
"border-bottom-left-radius",
|
|
125
|
+
"border-bottom-right-radius",
|
|
110
126
|
"border-boundary",
|
|
127
|
+
"border-limit",
|
|
128
|
+
"border-radius",
|
|
129
|
+
"border-spacing",
|
|
111
130
|
"border-clip",
|
|
131
|
+
"border-clip-top",
|
|
132
|
+
"border-clip-right",
|
|
112
133
|
"border-clip-bottom",
|
|
113
134
|
"border-clip-left",
|
|
114
|
-
"border-clip-right",
|
|
115
|
-
"border-clip-top",
|
|
116
135
|
"border-collapse",
|
|
117
136
|
"border-image",
|
|
118
137
|
"border-image-outset",
|
|
@@ -536,6 +555,8 @@ module.exports = [
|
|
|
536
555
|
"text-space-collapse",
|
|
537
556
|
"text-space-trim",
|
|
538
557
|
"text-spacing",
|
|
558
|
+
"text-autospace",
|
|
559
|
+
"text-spacing-trim",
|
|
539
560
|
"text-transform",
|
|
540
561
|
"text-underline-offset",
|
|
541
562
|
"text-underline-position",
|
|
@@ -576,16 +597,16 @@ module.exports = [
|
|
|
576
597
|
"white-space",
|
|
577
598
|
"widows",
|
|
578
599
|
"width",
|
|
579
|
-
"height",
|
|
580
600
|
"min-width",
|
|
581
|
-
"min-height",
|
|
582
601
|
"max-width",
|
|
602
|
+
"height",
|
|
603
|
+
"min-height",
|
|
583
604
|
"max-height",
|
|
584
605
|
"inline-size",
|
|
585
|
-
"block-size",
|
|
586
606
|
"min-inline-size",
|
|
587
|
-
"min-block-size",
|
|
588
607
|
"max-inline-size",
|
|
608
|
+
"block-size",
|
|
609
|
+
"min-block-size",
|
|
589
610
|
"max-block-size",
|
|
590
611
|
"will-change",
|
|
591
612
|
"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.9",
|
|
4
4
|
"description": "Mr. Henry's preferred order for CSS properties",
|
|
5
5
|
"main": "stylelint-mrhenry-prop-order.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"stylelint-plugin"
|
|
31
31
|
],
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"stylelint": "^14.16.1"
|
|
33
|
+
"stylelint": "^14.16.1 || ^15.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"stylelint": "^
|
|
36
|
+
"stylelint": "^15.2.0"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -10,7 +10,7 @@ const messages = stylelint.utils.ruleMessages(ruleName, {
|
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
const meta = {
|
|
13
|
-
url: "https://github.com/mrhenry/stylelint-mrhenry
|
|
13
|
+
url: "https://github.com/mrhenry/stylelint-mrhenry/tree/main/packages/prop-order"
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
const ignoredAtRules = [
|