linter-bundle 6.2.1 → 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 +10 -2
- package/eslint/overrides-jest.cjs +1 -1
- package/package.json +1 -1
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.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)
|
|
10
18
|
|
|
11
19
|
## [6.2.1] - 2024-01-25
|
|
12
20
|
|
|
@@ -49,7 +57,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
49
57
|
- [eslint] Make use of new [`no-object-constructor`](https://eslint.org/docs/latest/rules/no-object-constructor) rule
|
|
50
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
|
|
51
59
|
- [markdownlint] Make use of new [`MD054`/link-image-style](https://github.com/DavidAnson/markdownlint/blob/main/doc/md054.md) rule
|
|
52
|
-
- [eslint/overrides-jest] Make use of new [`jest/no-confusing-set-
|
|
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
|
|
53
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
|
|
54
62
|
- [stylelint] Make use of new [`lightness-notation`](https://stylelint.io/user-guide/rules/lightness-notation/) rule with option "percentage"
|
|
55
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-
|
|
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',
|