linter-bundle 7.10.0 → 7.11.0
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/eslint/jest.mjs +7 -2
- package/package.json +2 -2
- package/stylelint/index.mjs +9 -7
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/v7.
|
|
9
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v7.11.0...HEAD)
|
|
10
|
+
|
|
11
|
+
## [7.11.0] - 2025-11-19
|
|
12
|
+
|
|
13
|
+
- [eslint] Update `eslint-plugin-jsdoc`from `61.2.1` to `61.3.0`
|
|
14
|
+
- [eslint/jest] Report Jest version detection output only once (instead of once per thread)
|
|
15
|
+
- [stylelint] Added "transform-box", "transition-behavior" and "interpolate-size" to `order/properties-order` rule, and moved "content-visibility" behind "display", and "box-sizing" behind "all"
|
|
16
|
+
|
|
17
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v7.10.0...v7.11.0)
|
|
10
18
|
|
|
11
19
|
## [7.10.0] - 2025-11-19
|
|
12
20
|
|
package/eslint/jest.mjs
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
import { createRequire } from 'node:module';
|
|
6
|
+
import { isMainThread } from 'node:worker_threads';
|
|
6
7
|
|
|
7
8
|
import jestPlugin from 'eslint-plugin-jest';
|
|
8
9
|
import globals from 'globals';
|
|
@@ -165,12 +166,16 @@ async function getJestVersion () {
|
|
|
165
166
|
const jest = ('default' in jestModule ? jestModule.default : jestModule);
|
|
166
167
|
const version = jest.getVersion().split('.')[0];
|
|
167
168
|
|
|
168
|
-
|
|
169
|
+
if (isMainThread) {
|
|
170
|
+
process.stdout.write(`Detected Jest version: ${version}\n\n`);
|
|
171
|
+
}
|
|
169
172
|
|
|
170
173
|
return version;
|
|
171
174
|
}
|
|
172
175
|
catch {
|
|
173
|
-
|
|
176
|
+
if (isMainThread) {
|
|
177
|
+
process.stderr.write('No Jest version detected\n\n');
|
|
178
|
+
}
|
|
174
179
|
|
|
175
180
|
return 'detect';
|
|
176
181
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linter-bundle",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
|
|
6
6
|
"keywords": [
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"eslint-plugin-functional": "9.0.2",
|
|
52
52
|
"eslint-plugin-import": "2.32.0",
|
|
53
53
|
"eslint-plugin-jest": "29.1.0",
|
|
54
|
-
"eslint-plugin-jsdoc": "61.
|
|
54
|
+
"eslint-plugin-jsdoc": "61.3.0",
|
|
55
55
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
56
56
|
"eslint-plugin-n": "17.23.1",
|
|
57
57
|
"eslint-plugin-promise": "7.2.1",
|
package/stylelint/index.mjs
CHANGED
|
@@ -577,14 +577,15 @@ export default {
|
|
|
577
577
|
'order/properties-order': [
|
|
578
578
|
[
|
|
579
579
|
{
|
|
580
|
-
groupName: 'Reset',
|
|
580
|
+
groupName: 'Reset & Defaults',
|
|
581
581
|
emptyLineBefore: 'always',
|
|
582
582
|
noEmptyLineBetween: true,
|
|
583
583
|
properties: [
|
|
584
|
-
'all'
|
|
584
|
+
'all',
|
|
585
|
+
'box-sizing',
|
|
586
|
+
'interpolate-size'
|
|
585
587
|
]
|
|
586
588
|
},
|
|
587
|
-
|
|
588
589
|
{
|
|
589
590
|
groupName: 'Performance Optimizations',
|
|
590
591
|
emptyLineBefore: 'always',
|
|
@@ -611,6 +612,7 @@ export default {
|
|
|
611
612
|
noEmptyLineBetween: true,
|
|
612
613
|
properties: [
|
|
613
614
|
'display',
|
|
615
|
+
'content-visibility',
|
|
614
616
|
'visibility',
|
|
615
617
|
|
|
616
618
|
'appearance',
|
|
@@ -635,9 +637,7 @@ export default {
|
|
|
635
637
|
'inset-block-end',
|
|
636
638
|
'inset-inline',
|
|
637
639
|
'inset-inline-start',
|
|
638
|
-
'inset-inline-end'
|
|
639
|
-
|
|
640
|
-
'box-sizing'
|
|
640
|
+
'inset-inline-end'
|
|
641
641
|
]
|
|
642
642
|
},
|
|
643
643
|
{
|
|
@@ -829,6 +829,7 @@ export default {
|
|
|
829
829
|
properties: [
|
|
830
830
|
'transform',
|
|
831
831
|
'transform-origin',
|
|
832
|
+
'transform-box',
|
|
832
833
|
'transform-style',
|
|
833
834
|
'backface-visibility',
|
|
834
835
|
'perspective',
|
|
@@ -844,7 +845,8 @@ export default {
|
|
|
844
845
|
'transition-property',
|
|
845
846
|
'transition-duration',
|
|
846
847
|
'transition-timing-function',
|
|
847
|
-
'transition-delay'
|
|
848
|
+
'transition-delay',
|
|
849
|
+
'transition-behavior'
|
|
848
850
|
]
|
|
849
851
|
},
|
|
850
852
|
{
|