linter-bundle 6.2.0 → 6.2.1
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/CHANGELOG.md +9 -1
- package/package.json +1 -1
- package/stylelint/index.cjs +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v6.2.
|
|
9
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v6.2.1...HEAD)
|
|
10
|
+
|
|
11
|
+
## [6.2.1] - 2024-01-25
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- [stylelint] Change order of `(inset/margin/padding)-block` and `(inset/margin/padding)-inset`
|
|
16
|
+
|
|
17
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v6.2.0...v6.2.1)
|
|
10
18
|
|
|
11
19
|
## [6.2.0] - 2024-01-25
|
|
12
20
|
|
package/package.json
CHANGED
package/stylelint/index.cjs
CHANGED
|
@@ -528,12 +528,12 @@ module.exports = (async () => {
|
|
|
528
528
|
'bottom',
|
|
529
529
|
'left',
|
|
530
530
|
|
|
531
|
-
'inset-inline',
|
|
532
|
-
'inset-inline-start',
|
|
533
|
-
'inset-inline-end',
|
|
534
531
|
'inset-block',
|
|
535
532
|
'inset-block-start',
|
|
536
533
|
'inset-block-end',
|
|
534
|
+
'inset-inline',
|
|
535
|
+
'inset-inline-start',
|
|
536
|
+
'inset-inline-end',
|
|
537
537
|
|
|
538
538
|
'box-sizing'
|
|
539
539
|
]
|
|
@@ -633,12 +633,12 @@ module.exports = (async () => {
|
|
|
633
633
|
'margin-bottom',
|
|
634
634
|
'margin-left',
|
|
635
635
|
|
|
636
|
-
'margin-inline',
|
|
637
|
-
'margin-inline-start',
|
|
638
|
-
'margin-inline-end',
|
|
639
636
|
'margin-block',
|
|
640
637
|
'margin-block-start',
|
|
641
|
-
'margin-block-end'
|
|
638
|
+
'margin-block-end',
|
|
639
|
+
'margin-inline',
|
|
640
|
+
'margin-inline-start',
|
|
641
|
+
'margin-inline-end'
|
|
642
642
|
]
|
|
643
643
|
},
|
|
644
644
|
{
|
|
@@ -652,12 +652,12 @@ module.exports = (async () => {
|
|
|
652
652
|
'padding-bottom',
|
|
653
653
|
'padding-left',
|
|
654
654
|
|
|
655
|
-
'padding-inline',
|
|
656
|
-
'padding-inline-start',
|
|
657
|
-
'padding-inline-end',
|
|
658
655
|
'padding-block',
|
|
659
656
|
'padding-block-start',
|
|
660
|
-
'padding-block-end'
|
|
657
|
+
'padding-block-end',
|
|
658
|
+
'padding-inline',
|
|
659
|
+
'padding-inline-start',
|
|
660
|
+
'padding-inline-end'
|
|
661
661
|
]
|
|
662
662
|
},
|
|
663
663
|
{
|