linter-bundle 6.2.0 → 6.2.2

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 CHANGED
@@ -6,7 +6,23 @@ 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.0...HEAD)
9
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v6.2.2...HEAD)
10
+
11
+ ## [6.2.2] - 2024-01-25
12
+
13
+ ### Fixed
14
+
15
+ - [eslint/overrides-jest] Changed `jest/no-confusing-set-time` to correct rule name [`jest/no-confusing-set-timeout`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/no-confusing-set-timeout.md)
16
+
17
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v6.2.1...v6.2.2)
18
+
19
+ ## [6.2.1] - 2024-01-25
20
+
21
+ ### Changed
22
+
23
+ - [stylelint] Change order of `(inset/margin/padding)-block` and `(inset/margin/padding)-inset`
24
+
25
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v6.2.0...v6.2.1)
10
26
 
11
27
  ## [6.2.0] - 2024-01-25
12
28
 
@@ -41,7 +57,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
41
57
  - [eslint] Make use of new [`no-object-constructor`](https://eslint.org/docs/latest/rules/no-object-constructor) rule
42
58
  - [eslint] Make use of new [`unicorn/no-unnecessary-polyfills`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-unnecessary-polyfills.md) rule
43
59
  - [markdownlint] Make use of new [`MD054`/link-image-style](https://github.com/DavidAnson/markdownlint/blob/main/doc/md054.md) rule
44
- - [eslint/overrides-jest] Make use of new [`jest/no-confusing-set-time`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/no-confusing-set-timeout.md) rule
60
+ - [eslint/overrides-jest] Make use of new [`jest/no-confusing-set-timeout`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/no-confusing-set-timeout.md) rule
45
61
  - [eslint/overrides-jsdoc] Make use of [`jsdoc/informative-docs`](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/informative-docs.md) rule
46
62
  - [stylelint] Make use of new [`lightness-notation`](https://stylelint.io/user-guide/rules/lightness-notation/) rule with option "percentage"
47
63
  - [stylelint] Make use of new [`scss/at-root-no-redundant`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/at-root-no-redundant/README.md) rule
@@ -70,7 +70,7 @@ module.exports = {
70
70
  'jest/no-commented-out-tests': 'error',
71
71
  'jest/no-conditional-expect': 'error',
72
72
  'jest/no-conditional-in-test': 'error',
73
- 'jest/no-confusing-set-time': 'error',
73
+ 'jest/no-confusing-set-timeout': 'error',
74
74
  'jest/no-deprecated-functions': 'error',
75
75
  'jest/no-disabled-tests': 'error',
76
76
  'jest/no-done-callback': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linter-bundle",
3
- "version": "6.2.0",
3
+ "version": "6.2.2",
4
4
  "type": "module",
5
5
  "description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
6
6
  "keywords": [
@@ -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
  {