linter-bundle 7.7.0 → 7.8.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 +21 -1
- package/lint.js +1 -1
- package/package.json +9 -9
- package/stylelint/index.mjs +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,27 @@ 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.8.0...HEAD)
|
|
10
|
+
|
|
11
|
+
## [7.8.0] - 2025-08-21
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- [eslint] Updated `eslint` from `9.31.0` to `9.33.0`
|
|
16
|
+
- [eslint] Updated `eslint-plugin-jsdoc` from `51.4.1` to `54.1.1`
|
|
17
|
+
- [eslint] Updated `eslint-plugin-n` from `17.21.0` to `17.21.3`
|
|
18
|
+
- [eslint] Updated `typescript-eslint` from `8.38.0` to `8.40.0`
|
|
19
|
+
- [stylelint] Updated `stylelint` from `16.22.0` to `16.23.1`
|
|
20
|
+
- [stylelint] Updated `@stylistic/eslint-plugin` from `5.2.2` to `5.2.3`
|
|
21
|
+
- [stylelint] Add `first-nested` option to `ignore` of [`custom-property-empty-line-before`](https://stylelint.io/user-guide/rules/custom-property-empty-line-before/) rule
|
|
22
|
+
- [stylelint] Make use of new [`block-no-redundant-nested-style-rules`](https://github.com/stylelint/stylelint/blob/main/lib/rules/block-no-redundant-nested-style-rules) rule
|
|
23
|
+
- [stylelint] Make use of new [`media-type-no-deprecated`](https://github.com/stylelint/stylelint/tree/main/lib/rules/media-type-no-deprecated) rule
|
|
24
|
+
- [stylelint] Make use of new [`nesting-selector-no-missing-scoping-root`](https://github.com/stylelint/stylelint/blob/main/lib/rules/nesting-selector-no-missing-scoping-root) rule
|
|
25
|
+
- [stylelint] Make use of new [`no-invalid-position-declaration`](https://github.com/stylelint/stylelint/blob/main/lib/rules/no-invalid-position-declaration) rule
|
|
26
|
+
- [stylelint] Make use of new [`property-no-deprecated`](https://github.com/stylelint/stylelint/blob/main/lib/rules/property-no-deprecated) rule
|
|
27
|
+
- [audit] Updated `improved-yarn-audit` from `3.0.3` to `3.0.4`
|
|
28
|
+
|
|
29
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v7.7.0...v7.8.0)
|
|
10
30
|
|
|
11
31
|
## [7.7.0] - 2025-07-25
|
|
12
32
|
|
package/lint.js
CHANGED
|
@@ -334,7 +334,7 @@ async function runAuditTask (taskName, taskConfig) {
|
|
|
334
334
|
'npx',
|
|
335
335
|
'--yes',
|
|
336
336
|
'--',
|
|
337
|
-
'improved-yarn-audit@3.0.
|
|
337
|
+
'improved-yarn-audit@3.0.4',
|
|
338
338
|
`--min-severity ${(newTaskConfig.minSeverity?.[0] ?? 'moderate')}`,
|
|
339
339
|
'--fail-on-missing-exclusions',
|
|
340
340
|
'--ignore-dev-deps',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linter-bundle",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.8.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": [
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"_test-stylelint": "node ./test-stylelint.js"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@stylistic/eslint-plugin": "5.2.
|
|
46
|
-
"eslint": "9.
|
|
45
|
+
"@stylistic/eslint-plugin": "5.2.3",
|
|
46
|
+
"eslint": "9.33.0",
|
|
47
47
|
"eslint-formatter-unix": "8.40.0",
|
|
48
48
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
49
49
|
"eslint-import-resolver-webpack": "0.13.10",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"eslint-plugin-functional": "9.0.2",
|
|
52
52
|
"eslint-plugin-import": "2.32.0",
|
|
53
53
|
"eslint-plugin-jest": "29.0.1",
|
|
54
|
-
"eslint-plugin-jsdoc": "
|
|
54
|
+
"eslint-plugin-jsdoc": "54.1.1",
|
|
55
55
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
56
|
-
"eslint-plugin-n": "17.21.
|
|
56
|
+
"eslint-plugin-n": "17.21.3",
|
|
57
57
|
"eslint-plugin-promise": "7.2.1",
|
|
58
58
|
"eslint-plugin-react": "7.37.5",
|
|
59
59
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"markdownlint-cli": "0.45.0",
|
|
63
63
|
"micromatch": "4.0.8",
|
|
64
64
|
"postcss-scss": "4.0.9",
|
|
65
|
-
"stylelint": "16.
|
|
65
|
+
"stylelint": "16.23.1",
|
|
66
66
|
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
|
|
67
67
|
"stylelint-high-performance-animation": "1.11.0",
|
|
68
68
|
"stylelint-order": "7.0.0",
|
|
69
69
|
"stylelint-scss": "6.12.1",
|
|
70
70
|
"stylelint-use-logical-spec": "5.0.1",
|
|
71
|
-
"typescript-eslint": "8.
|
|
71
|
+
"typescript-eslint": "8.40.0"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"@typescript-eslint/utils": "*",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@types/eslint": "9.6.1",
|
|
80
80
|
"@types/micromatch": "4.0.9",
|
|
81
|
-
"@types/node": "24.
|
|
81
|
+
"@types/node": "24.3.0",
|
|
82
82
|
"stylelint-find-new-rules": "5.0.0",
|
|
83
|
-
"typescript": "5.
|
|
83
|
+
"typescript": "5.9.2"
|
|
84
84
|
}
|
|
85
85
|
}
|
package/stylelint/index.mjs
CHANGED
|
@@ -255,6 +255,7 @@ export default {
|
|
|
255
255
|
'font-face': ['font-family', 'font-style', 'font-weight', 'src']
|
|
256
256
|
}],
|
|
257
257
|
'block-no-empty': true,
|
|
258
|
+
'block-no-redundant-nested-style-rules': true,
|
|
258
259
|
'color-function-alias-notation': 'without-alpha',
|
|
259
260
|
'color-function-notation': [
|
|
260
261
|
'modern', {
|
|
@@ -282,7 +283,10 @@ export default {
|
|
|
282
283
|
'custom-property-empty-line-before': [
|
|
283
284
|
'always',
|
|
284
285
|
{
|
|
285
|
-
ignore: [
|
|
286
|
+
ignore: [
|
|
287
|
+
'first-nested',
|
|
288
|
+
'after-custom-property'
|
|
289
|
+
]
|
|
286
290
|
}
|
|
287
291
|
],
|
|
288
292
|
'custom-property-no-missing-var-function': true,
|
|
@@ -358,19 +362,23 @@ export default {
|
|
|
358
362
|
'media-feature-name-value-no-unknown': true,
|
|
359
363
|
'media-feature-range-notation': 'prefix',
|
|
360
364
|
'media-query-no-invalid': true,
|
|
365
|
+
'media-type-no-deprecated': true,
|
|
361
366
|
'named-grid-areas-no-invalid': true,
|
|
367
|
+
'nesting-selector-no-missing-scoping-root': true,
|
|
362
368
|
'no-descending-specificity': null, // doesn't work in many cases (e.g. while using the SCSS :global()-pseudo-class)
|
|
363
369
|
'no-duplicate-at-import-rules': true,
|
|
364
370
|
'no-duplicate-selectors': true,
|
|
365
371
|
'no-empty-source': true,
|
|
366
372
|
'no-invalid-double-slash-comments': true,
|
|
367
373
|
'no-invalid-position-at-import-rule': true,
|
|
374
|
+
'no-invalid-position-declaration': true,
|
|
368
375
|
'no-irregular-whitespace': true,
|
|
369
376
|
'no-unknown-animations': true,
|
|
370
377
|
'no-unknown-custom-media': true,
|
|
371
378
|
'no-unknown-custom-properties': null, // @todo Activate in 2025 as Firefox currently does not support "@property" and there is no way to specify which custom properties are available
|
|
372
379
|
'number-max-precision': 5,
|
|
373
380
|
'property-allowed-list': null,
|
|
381
|
+
'property-no-deprecated': true,
|
|
374
382
|
'property-disallowed-list': [
|
|
375
383
|
'font', // Shorthand property is to complex
|
|
376
384
|
'grid-gap' // @deprecated Use gap.
|