@mrhenry/stylelint-mrhenry-prop-order 2.0.8 → 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 +2 -2
- package/package.json +2 -2
- package/stylelint-mrhenry-prop-order.js +2 -1
package/order.js
CHANGED
|
@@ -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",
|
|
@@ -488,7 +489,6 @@ module.exports = [
|
|
|
488
489
|
"scroll-start-target-x",
|
|
489
490
|
"scroll-start-target-y",
|
|
490
491
|
"scroll-timeline",
|
|
491
|
-
"scroll-timeline-attachment",
|
|
492
492
|
"scroll-timeline-axis",
|
|
493
493
|
"scroll-timeline-name",
|
|
494
494
|
"scrollbar-color",
|
|
@@ -569,6 +569,7 @@ module.exports = [
|
|
|
569
569
|
"text-transform",
|
|
570
570
|
"text-underline-offset",
|
|
571
571
|
"text-underline-position",
|
|
572
|
+
"timeline-scope",
|
|
572
573
|
"top",
|
|
573
574
|
"right",
|
|
574
575
|
"bottom",
|
|
@@ -589,7 +590,6 @@ module.exports = [
|
|
|
589
590
|
"vector-effect",
|
|
590
591
|
"vertical-align",
|
|
591
592
|
"view-timeline",
|
|
592
|
-
"view-timeline-attachment",
|
|
593
593
|
"view-timeline-axis",
|
|
594
594
|
"view-timeline-inset",
|
|
595
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 = [
|