@mrhenry/stylelint-mrhenry-prop-order 3.0.15 → 3.0.16
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/index.mjs +1 -2
- package/order.mjs +7 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -20,8 +20,7 @@ const ignoredAtRules = [
|
|
|
20
20
|
'property'
|
|
21
21
|
];
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
const ruleFunction = (primaryOption, secondaryOption, context) => {
|
|
23
|
+
const ruleFunction = (primaryOption) => {
|
|
25
24
|
return (postcssRoot, postcssResult) => {
|
|
26
25
|
const validPrimary = stylelint.utils.validateOptions(postcssResult, ruleName, {
|
|
27
26
|
actual: primaryOption,
|
package/order.mjs
CHANGED
|
@@ -34,6 +34,10 @@ export const order = [
|
|
|
34
34
|
"background-position-x",
|
|
35
35
|
"background-position-y",
|
|
36
36
|
"background-repeat",
|
|
37
|
+
"background-repeat-inline",
|
|
38
|
+
"background-repeat-block",
|
|
39
|
+
"background-repeat-x",
|
|
40
|
+
"background-repeat-y",
|
|
37
41
|
"background-size",
|
|
38
42
|
"baseline-source",
|
|
39
43
|
"block-step",
|
|
@@ -305,6 +309,7 @@ export const order = [
|
|
|
305
309
|
"lighting-color",
|
|
306
310
|
"line-break",
|
|
307
311
|
"line-clamp",
|
|
312
|
+
"line-fit-edge",
|
|
308
313
|
"line-grid",
|
|
309
314
|
"line-height",
|
|
310
315
|
"line-height-step",
|
|
@@ -533,6 +538,7 @@ export const order = [
|
|
|
533
538
|
"text-align-all",
|
|
534
539
|
"text-align-last",
|
|
535
540
|
"text-anchor",
|
|
541
|
+
"text-box",
|
|
536
542
|
"text-box-edge",
|
|
537
543
|
"text-box-trim",
|
|
538
544
|
"text-combine-upright",
|
|
@@ -594,6 +600,7 @@ export const order = [
|
|
|
594
600
|
"view-timeline-inset",
|
|
595
601
|
"view-timeline-name",
|
|
596
602
|
"view-transition-class",
|
|
603
|
+
"view-transition-group",
|
|
597
604
|
"view-transition-name",
|
|
598
605
|
"visibility",
|
|
599
606
|
"voice-balance",
|