@mrhenry/stylelint-mrhenry-prop-order 2.0.7 → 2.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 +16 -6
- package/package.json +2 -2
- package/stylelint-mrhenry-prop-order.js +2 -1
package/order.js
CHANGED
|
@@ -384,11 +384,11 @@ module.exports = [
|
|
|
384
384
|
"outline-width",
|
|
385
385
|
"outline-offset",
|
|
386
386
|
"overflow",
|
|
387
|
+
"overflow-inline",
|
|
388
|
+
"overflow-block",
|
|
387
389
|
"overflow-x",
|
|
388
390
|
"overflow-y",
|
|
389
391
|
"overflow-anchor",
|
|
390
|
-
"overflow-inline",
|
|
391
|
-
"overflow-block",
|
|
392
392
|
"overflow-clip-margin",
|
|
393
393
|
"overflow-clip-margin-inline",
|
|
394
394
|
"overflow-clip-margin-inline-start",
|
|
@@ -403,10 +403,10 @@ module.exports = [
|
|
|
403
403
|
"overflow-wrap",
|
|
404
404
|
"overlay",
|
|
405
405
|
"overscroll-behavior",
|
|
406
|
-
"overscroll-behavior-x",
|
|
407
|
-
"overscroll-behavior-y",
|
|
408
406
|
"overscroll-behavior-inline",
|
|
409
407
|
"overscroll-behavior-block",
|
|
408
|
+
"overscroll-behavior-x",
|
|
409
|
+
"overscroll-behavior-y",
|
|
410
410
|
"padding",
|
|
411
411
|
"padding-inline",
|
|
412
412
|
"padding-inline-start",
|
|
@@ -434,6 +434,7 @@ module.exports = [
|
|
|
434
434
|
"pointer-events",
|
|
435
435
|
"position",
|
|
436
436
|
"position-fallback",
|
|
437
|
+
"position-fallback-bounds",
|
|
437
438
|
"print-color-adjust",
|
|
438
439
|
"quotes",
|
|
439
440
|
"r",
|
|
@@ -477,8 +478,17 @@ module.exports = [
|
|
|
477
478
|
"scroll-snap-align",
|
|
478
479
|
"scroll-snap-stop",
|
|
479
480
|
"scroll-snap-type",
|
|
481
|
+
"scroll-start",
|
|
482
|
+
"scroll-start-inline",
|
|
483
|
+
"scroll-start-block",
|
|
484
|
+
"scroll-start-x",
|
|
485
|
+
"scroll-start-y",
|
|
486
|
+
"scroll-start-target",
|
|
487
|
+
"scroll-start-target-inline",
|
|
488
|
+
"scroll-start-target-block",
|
|
489
|
+
"scroll-start-target-x",
|
|
490
|
+
"scroll-start-target-y",
|
|
480
491
|
"scroll-timeline",
|
|
481
|
-
"scroll-timeline-attachment",
|
|
482
492
|
"scroll-timeline-axis",
|
|
483
493
|
"scroll-timeline-name",
|
|
484
494
|
"scrollbar-color",
|
|
@@ -559,6 +569,7 @@ module.exports = [
|
|
|
559
569
|
"text-transform",
|
|
560
570
|
"text-underline-offset",
|
|
561
571
|
"text-underline-position",
|
|
572
|
+
"timeline-scope",
|
|
562
573
|
"top",
|
|
563
574
|
"right",
|
|
564
575
|
"bottom",
|
|
@@ -579,7 +590,6 @@ module.exports = [
|
|
|
579
590
|
"vector-effect",
|
|
580
591
|
"vertical-align",
|
|
581
592
|
"view-timeline",
|
|
582
|
-
"view-timeline-attachment",
|
|
583
593
|
"view-timeline-axis",
|
|
584
594
|
"view-timeline-inset",
|
|
585
595
|
"view-timeline-name",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrhenry/stylelint-mrhenry-prop-order",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
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.6.
|
|
36
|
+
"stylelint": "^15.6.3"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -10,7 +10,8 @@ const messages = stylelint.utils.ruleMessages(ruleName, {
|
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
const meta = {
|
|
13
|
-
url: "https://github.com/mrhenry/stylelint-mrhenry/tree/main/packages/prop-order"
|
|
13
|
+
url: "https://github.com/mrhenry/stylelint-mrhenry/tree/main/packages/prop-order",
|
|
14
|
+
fixable: true,
|
|
14
15
|
};
|
|
15
16
|
|
|
16
17
|
const ignoredAtRules = [
|