linter-bundle 1.28.0 → 2.3.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 CHANGED
@@ -6,18 +6,132 @@ 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/v1.27.0...HEAD)
9
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.3.1...HEAD)
10
+
11
+ ## [2.3.1] - 2022.01.28
12
+
13
+ ### Fixed
14
+
15
+ - [eslint/overrides-javascript(-lazy)] Move `import/no-import-module-exports` rule to`overrides-javascript`
16
+ - [eslint/overrides-gatsby] Ignore '@reach/router' in `import/no-unresolved` rule
17
+ - [eslint] Disabled `react/require-default-props`, because of false-positive for React.forwardRef wrapped functional components
18
+ - [eslint] Disabled `unicorn/prefer-top-level-await`, because of false-positive on environments with Node.js below v14.8
19
+ - [eslint] Activated `allowThrowingUnknown` option of the [`@typescript-eslint/no-throw-literal`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-throw-literal.md) rule
20
+ - [stylelint] Activate `camelCaseSvgKeywords` option of the [`value-keyword-case`](https://github.com/stylelint/stylelint/tree/main/lib/rules/value-keyword-case) rule
21
+
22
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.3.0...v2.3.1)
23
+
24
+ ## [2.3.0] - 2022.01.27
25
+
26
+ ### Changed
27
+
28
+ - [eslint] In the `.vscode/settings.json` the "configFile" option in "eslint.options" has been renamed to "overrideConfigFile"
29
+ - [eslint] Re-added [`eslint-plugin-jsx-a11y`](https://www.npmjs.com/package/eslint-plugin-jsx-a11y) v6.5.1
30
+ - [eslint] Re-added [`eslint-plugin-promise`](https://www.npmjs.com/package/eslint-plugin-promise) v6.0.0
31
+ - [eslint] Re-added [`eslint-plugin-react`](https://www.npmjs.com/package/eslint-plugin-react) v7.28.0
32
+ - [stylelint] Re-added [`stylelint-declaration-block-no-ignored-properties`](https://www.npmjs.com/package/stylelint-declaration-block-no-ignored-properties) v2.5.0
33
+ - [eslint] Updated `eslint-plugin-react-hooks` from v4.2.1-alpha-13455d26d-20211104 to v4.3.0
34
+ - [eslint] Re-added [`react/no-invalid-html-attribute`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-invalid-html-attribute.md) rule
35
+ - [eslint] Re-added [`react/no-arrow-function-lifecycle`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-arrow-function-lifecycle.md) rule
36
+ - [eslint] Re-added [`react/no-unused-class-component-methods`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unused-class-component-methods.md) rule
37
+ - [eslint] Disabled [`unicorn/prefer-object-has-own`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-object-has-own.md) for now, because of limited engine support
38
+ - [eslint] Disabled `allowThrowingAny` and `allowThrowingUnknown` of the [`@typescript-eslint/no-throw-literal`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-throw-literal.md) rule
39
+ - [eslint] Reactivated [`import/no-import-module-exports`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-import-module-exports.md) rule
40
+ - [eslint] Added new [`import/no-unused-modules`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-unused-modules.md) rule
41
+ - [eslint] Added new [`jest/prefer-comparison-matcher`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/prefer-comparison-matcher.md) rule
42
+ - [eslint] Added new [`jest/prefer-equality-matcher`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/prefer-equality-matcher.md) rule
43
+ - [eslint] Added new [`unicorn/no-await-expression-member`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-await-expression-member.md) rule
44
+ - [eslint] Added new [`unicorn/prefer-code-point`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-code-point.md) rule
45
+ - [eslint] Added new [`unicorn/no-thenable`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-thenable.md) rule
46
+ - [eslint] Added new [`unicorn/no-useless-promise-resolve-reject`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-promise-resolve-reject.md) rule
47
+ - [eslint] Added new [`unicorn/relative-url-style`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/relative-url-style.md) rule
48
+ - [eslint] Added new [`unicorn/prefer-json-parse-buffer`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-json-parse-buffer.md) rule
49
+ - [eslint] Updated `@typescript-eslint` from v5.3.0 to v5.10.1
50
+ - [eslint] Updated `eslint` from v8.2.0 to v8.7.0
51
+ - [eslint] Updated `eslint-plugin-functional` from v4.0.2 to v4.1.1
52
+ - [eslint] Updated `eslint-plugin-import` from v2.25.2 to v2.25.4
53
+ - [eslint] Updated `eslint-plugin-jest` from v25.2.3 to v26.0.0
54
+ - [eslint] Updated `eslint-plugin-jsdoc` from v37.0.3 to v37.7.0
55
+ - [eslint] Updated `eslint-plugin-unicode` from v38.0.0 to v40.1.0
56
+ - [markdownlint] Updated `markdownlint-cli` from v0.29.0 to v0.30.0
57
+ - [stylelint] Updated `stylelint` from v14.0.1 to v14.3.0
58
+ - [stylelint] Updated `stylelint-scss` from v4.0.0 to v4.1.0
59
+ - [stylelint] Added new [`scss/dollar-variable-no-namespaced-assignment`](https://github.com/stylelint-scss/stylelint-scss/tree/master/src/rules/dollar-variable-no-namespaced-assignment) rule
60
+ - [stylelint] Added new [`scss/at-use-no-unnamespaced`](https://github.com/stylelint-scss/stylelint-scss/tree/master/src/rules/at-use-no-unnamespaced) rule
61
+ - [stylelint] Added but disabled [`rule-selector-property-disallowed-list`](https://github.com/stylelint/stylelint/tree/main/lib/rules/rule-selector-property-disallowed-list) rule
62
+
63
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.1.0...v2.3.0)
64
+
65
+ ## [2.1.0] - 2021.11.07
66
+
67
+ ### Changed
68
+
69
+ - [stylelint] Forked [`stylelint-high-performance-animation`](https://www.npmjs.com/package/stylelint-high-performance-animation), because it seems not to be regularly maintained anymore
70
+ - [eslint] Updated `eslint` from v8.1.0 to v8.2.0
71
+
72
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.0.0...v2.1.0)
73
+
74
+ ## [2.0.0] - 2021.11.05
75
+
76
+ ### Removed
77
+
78
+ - [eslint] [`eslint-plugin-jsx-a11y`](https://www.npmjs.com/package/eslint-plugin-jsx-a11y) has been removed, because it seems not to be regularly maintained anymore, which blocks us from updating to ESLint v8
79
+ - [eslint] [`eslint-plugin-promise`](https://www.npmjs.com/package/eslint-plugin-promise) has been removed, because it seems not to be regularly maintained anymore, which blocks us from updating to ESLint v8
80
+ - [eslint] [`eslint-plugin-react`](https://www.npmjs.com/package/eslint-plugin-react) has been removed, because it's relying on unmaintained dependencies, which blocks us from updating to ESLint v8
81
+ - [stylelint] [`stylelint-declaration-block-no-ignored-properties`](https://www.npmjs.com/package/stylelint-declaration-block-no-ignored-properties) has been removed, because it seems not to be regularly maintained anymore, which blocks us from updating to Stylelint v14
82
+ - [stylelint] [`stylelint-use-nesting`](https://www.npmjs.com/package/stylelint-use-nesting) has been removed, because it seems not to be regularly maintained anymore, which blocks us from updating to Stylelint v14
83
+
84
+ ### Changed
85
+
86
+ - [eslint] Updated `@typescript-eslint` from v4.31.1 to v5.3.0
87
+ - [eslint] Updated `eslint` from v7.32.0 to v8.1.0
88
+ - [eslint] Updated `eslint-plugin-functional` from v3.7.0 to v4.0.2
89
+ - [eslint] Updated `eslint-plugin-import` from v2.24.2 to v2.25.2
90
+ - [eslint] Updated `eslint-plugin-jest` from v24.4.2 to v25.2.3
91
+ - [eslint] Updated `eslint-plugin-jsdoc` from v36.1.0 to v37.0.3
92
+ - [eslint] Updated `eslint-plugin-promise` from v5.1.0 to v5.1.1
93
+ - [eslint] Updated `eslint-plugin-react` from v7.25.2 to v7.26.1
94
+ - [eslint] Updated `eslint-plugin-unicorn` from v36.0.0 to v38.0.0
95
+ - [eslint] Updated `eslint-import-resolver-webpack` from v0.13.1 to v0.13.2
96
+ - [eslint] Updated `eslint-plugin-react-hooks` from v4.2.0 to v4.2.1-alpha-13455d26d-20211104
97
+ - [eslint] Make use of `caseSensitiveStrict` option of [`import/no-unresolved`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unresolved.md) rule
98
+ - [eslint] Removed deprecated `@typescript-eslint/no-unused-vars-experimental` rule
99
+ - [eslint] Removed deprecated `functional/prefer-type-literal` rule
100
+ - [eslint] Removed deprecated `jest/prefer-to-be-null` rule
101
+ - [eslint] Removed deprecated `jest/prefer-to-be-undefined` rule
102
+ - [eslint] Added but disabled [`jest/prefer-expect-resolves`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/prefer-expect-resolves.md) rule, because we prefer `expect(await promise)`
103
+ - [eslint] Make use of [`jest/prefer-to-be`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/prefer-to-be.md) rule
104
+ - [eslint] Make use of [`jest/require-hook`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/require-hook.md) rule
105
+ - [eslint] `jest/valid-describe` as been renamed to `valid-describe-callback`
106
+ - [eslint] `jest/lowercase-name` as been renamed to `prefer-lowercase-title`
107
+ - [eslint] Make use of [`no-unused-private-class-members`](https://github.com/eslint/eslint/blob/main/docs/rules/no-unused-private-class-members.md) rule
108
+ - [eslint] Make use of [`react/no-namespace`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-namespace.md) rule
109
+ - [eslint] Make use of [`react/jsx-max-props-per-line`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-max-props-per-line.md) rule
110
+ - [eslint] Make use of [`template-indent`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/template-indent.md) rule
111
+ - [eslint] Make use of [`@typescript-eslint/consistent-type-exports`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/consistent-type-exports.md) rule
112
+ - [eslint] Make use of [unicorn/no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-empty-file.md) rule
113
+ - [eslint] Make use of [unicorn/prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-export-from.md) rule
114
+ - [markdownlint] Updated `markdownlint-cli` from v0.28.1 to v0.29.0
115
+ - [stylelint] Updated `stylelint` from v13.13.1 to v14.0.1
116
+ - [stylelint] Updated `stylelint-order` from v4.1.0 to v5.0.0
117
+ - [stylelint] Updated `stylelint-scss` from v3.21.0 to v4.0.0
118
+ - [stylelint] Added but disabled [`color-hex-alpha`](https://github.com/stylelint/stylelint/blob/main/lib/rules/color-hex-alpha/README.md) rule, because of limited browser support
119
+ - [stylelint] Make use of [`custom-property-no-missing-var-function`](https://github.com/stylelint/stylelint/blob/main/lib/rules/custom-property-no-missing-var-function/README.md) rule
120
+ - [stylelint] Removed deprecated `function-calc-no-invalid` rule
121
+ - [stylelint] Forked [`stylelint-selector-tag-no-without-class`](https://www.npmjs.com/package/stylelint-selector-tag-no-without-class), because it seems not to be regularly maintained anymore
122
+
123
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.28.0...v2.0.0)
10
124
 
11
125
  ## [1.28.0] - 2021.09.18
12
126
 
13
127
  ### Changed
14
128
 
15
129
  - The minimum required Node.js version is v14 now
16
- - [eslint] Update `@typescript-eslint` from v4.31.0 to v4.31.1
17
- - [eslint] Update `eslint-import-resolver-typescript` from v2.4.0 to v2.5.0
18
- - [eslint] Update `eslint-plugin-jest` from v24.4.0 to v24.4.2
19
- - [eslint] Update `eslint-plugin-react` from v7.25.1 to v7.25.2
20
- - [stylelint] Update `stylelint-scss` from v3.20.1 to v3.21.0
130
+ - [eslint] Updated `@typescript-eslint` from v4.31.0 to v4.31.1
131
+ - [eslint] Updated `eslint-import-resolver-typescript` from v2.4.0 to v2.5.0
132
+ - [eslint] Updated `eslint-plugin-jest` from v24.4.0 to v24.4.2
133
+ - [eslint] Updated `eslint-plugin-react` from v7.25.1 to v7.25.2
134
+ - [stylelint] Updated `stylelint-scss` from v3.20.1 to v3.21.0
21
135
 
22
136
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.27.0...v1.28.0)
23
137
 
@@ -25,12 +139,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
25
139
 
26
140
  ### Changed
27
141
 
28
- - [eslint] Update `@typescript-eslint` from v4.29.3 to v4.31.0
29
- - [eslint] Update `eslint-plugin-jsdoc` from v36.0.8 to v36.1.0
30
- - [eslint] Update `eslint-plugin-react` from v7.25.0 to v7.25.1
31
- - [eslint] Update `eslint-plugin-unicorn`from v35.0.0 to v36.0.0
142
+ - [eslint] Updated `@typescript-eslint` from v4.29.3 to v4.31.0
143
+ - [eslint] Updated `eslint-plugin-jsdoc` from v36.0.8 to v36.1.0
144
+ - [eslint] Updated `eslint-plugin-react` from v7.25.0 to v7.25.1
145
+ - [eslint] Updated `eslint-plugin-unicorn`from v35.0.0 to v36.0.0
32
146
  - [eslint] Make use of [@typescript-eslint/no-meaningless-void-operator](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-meaningless-void-operator.md) rule
33
- - [eslint] Reactivate [@typescript-eslint/dot-notation](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/dot-notation.md) rule
147
+ - [eslint] Reactivated [@typescript-eslint/dot-notation](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/dot-notation.md) rule
34
148
  - [eslint] Make use of [unicorn/no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-fallback-in-spread.md) rule
35
149
  - [eslint] Make use of [unicorn/no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-invalid-remove-event-listener.md) rule
36
150
 
@@ -40,10 +154,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
40
154
 
41
155
  ### Changed
42
156
 
43
- - [eslint] Update `eslint-plugin-functional` from v3.6.0 to v3.7.0
44
- - [eslint] Update `eslint-plugin-react` from v7.24.0 to v7.25.0
157
+ - [eslint] Updated `eslint-plugin-functional` from v3.6.0 to v3.7.0
158
+ - [eslint] Updated `eslint-plugin-react` from v7.24.0 to v7.25.0
45
159
  - [eslint] Disabled [`functional/prefer-tacit`](https://github.com/jonaskello/eslint-plugin-functional/blob/master/docs/rules/prefer-tacit.md) because changes are recommended that could [lead to potential bugs](https://github.com/jonaskello/eslint-plugin-functional/issues/263)
46
- - [eslint] Activate the `forms` option of the [`react/jsx-no-target-blank`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md) rule
160
+ - [eslint] Activated the `forms` option of the [`react/jsx-no-target-blank`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md) rule
47
161
 
48
162
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.25.2...v1.26.0)
49
163
 
@@ -61,8 +175,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
61
175
 
62
176
  ### Changed
63
177
 
64
- - [eslint] Update `eslint-plugin-import` from v2.24.1 to v2.24.2
65
- - [eslint] Update `eslint-plugin-jsdoc` from v36.0.7 to v36.0.8
178
+ - [eslint] Updated `eslint-plugin-import` from v2.24.1 to v2.24.2
179
+ - [eslint] Updated `eslint-plugin-jsdoc` from v36.0.7 to v36.0.8
66
180
 
67
181
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.25.0...v1.25.1)
68
182
 
@@ -70,20 +184,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
70
184
 
71
185
  ### Changed
72
186
 
73
- - [eslint] Update `@typescript-eslint` from v4.28.5 to v4.29.3
74
- - [eslint] Update `eslint` from v7.31.0 to v7.32.0
75
- - [eslint] Update `eslint-plugin-functional` from v3.3.0 to v3.6.0
76
- - [eslint] Update `eslint-plugin-import` from v2.23.4 to v2.24.1
77
- - [eslint] Update `eslint-plugin-jsdoc` from v36.0.6 to v36.0.7
78
- - [eslint] Update `eslint-plugin-unicorn` from v34.0.1 to v35.0.0
79
- - [eslint] Activate `ignoreDeclarationMerge` of [`@typescript-eslint/no-redeclare`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-redeclare.md) rule
187
+ - [eslint] Updated `@typescript-eslint` from v4.28.5 to v4.29.3
188
+ - [eslint] Updated `eslint` from v7.31.0 to v7.32.0
189
+ - [eslint] Updated `eslint-plugin-functional` from v3.3.0 to v3.6.0
190
+ - [eslint] Updated `eslint-plugin-import` from v2.23.4 to v2.24.1
191
+ - [eslint] Updated `eslint-plugin-jsdoc` from v36.0.6 to v36.0.7
192
+ - [eslint] Updated `eslint-plugin-unicorn` from v34.0.1 to v35.0.0
193
+ - [eslint] Activated `ignoreDeclarationMerge` of [`@typescript-eslint/no-redeclare`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-redeclare.md) rule
80
194
  - [eslint] Make use of [`@typescript-eslint/prefer-return-this-type`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/prefer-return-this-type.md) rule
81
195
  - [eslint] Make use of [`functional/prefer-tacit`](https://github.com/jonaskello/eslint-plugin-functional/blob/master/docs/rules/prefer-tacit.md) rule
82
- - [eslint] Activate `ignoreTypeImports` of [`import/max-dependencies`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/max-dependencies.md) rule
196
+ - [eslint] Activated `ignoreTypeImports` of [`import/max-dependencies`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/max-dependencies.md) rule
83
197
  - [eslint] Make use of [`unicorn/prefer-object-from-entries`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-object-from-entries.md) rule
84
198
  - [eslint] Make use of [`unicorn/no-useless-length-check`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-length-check.md) rule
85
199
  - [eslint] Make use of [`unicorn/no-useless-spread`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-spread.md) rule
86
- - [eslint] Activate `allowSimpleOperations` of [`unicorn/no-array-reduce`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-array-reduce.md) rule
200
+ - [eslint] Activated `allowSimpleOperations` of [`unicorn/no-array-reduce`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-array-reduce.md) rule
87
201
 
88
202
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.24.0...v1.25.0)
89
203
 
@@ -91,20 +205,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
91
205
 
92
206
  ### Changed
93
207
 
94
- - [stylelint] Add `overscroll-behavior` CSS property to `order/properties-order` plugin configuration after `overflow[-x/y]`
208
+ - [stylelint] Added `overscroll-behavior` CSS property to `order/properties-order` plugin configuration after `overflow[-x/y]`
95
209
  - [eslint] Make use of [`unicorn/no-array-method-this-argument`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-array-method-this-argument.md) rule
96
210
  - [eslint] Make use of [`unicorn/prefer-top-level-await`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-top-level-await.md) rule
97
211
  - [eslint] Make use of [`jest/max-nested-describe`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/max-nested-describe.md) rule
98
- - [eslint] Update `@typescript-eslint` from v4.26.1 to v4.28.5
99
- - [eslint] Update `eslint` from v7.28.0 to v7.31.0
100
- - [eslint] Update `eslint-plugin-functional` from v3.2.1 to v3.3.0
101
- - [eslint] Update `eslint-plugin-jest` from v24.3.6 to v24.4.0
102
- - [eslint] Update `eslint-plugin-jsdoc` from v35.2.0 to v36.0.6
103
- - [eslint] Update `eslint-plugin-unicorn` from v33.0.1 to v34.0.1
104
- - [markdownlint] Update `markdownlint-cli` from v0.27.1 to v0.28.1
105
- - [stylelint] Update `stylelint-declaration-block-no-ignored-properties` from v2.3.0 to v2.4.0
106
- - [stylelint] Update `stylelint-scss` from v3.19.0 to v3.20.1
107
- - [stylelint] Update `stylelint-use-logical-spec` from v3.2.0 to v3.2.2
212
+ - [eslint] Updated `@typescript-eslint` from v4.26.1 to v4.28.5
213
+ - [eslint] Updated `eslint` from v7.28.0 to v7.31.0
214
+ - [eslint] Updated `eslint-plugin-functional` from v3.2.1 to v3.3.0
215
+ - [eslint] Updated `eslint-plugin-jest` from v24.3.6 to v24.4.0
216
+ - [eslint] Updated `eslint-plugin-jsdoc` from v35.2.0 to v36.0.6
217
+ - [eslint] Updated `eslint-plugin-unicorn` from v33.0.1 to v34.0.1
218
+ - [markdownlint] Updated `markdownlint-cli` from v0.27.1 to v0.28.1
219
+ - [stylelint] Updated `stylelint-declaration-block-no-ignored-properties` from v2.3.0 to v2.4.0
220
+ - [stylelint] Updated `stylelint-scss` from v3.19.0 to v3.20.1
221
+ - [stylelint] Updated `stylelint-use-logical-spec` from v3.2.0 to v3.2.2
108
222
 
109
223
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.23.0...v1.24.0)
110
224
 
@@ -113,13 +227,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
113
227
  ### Changed
114
228
 
115
229
  - [eslint/overrides-jest] Don't apply any of the rules for `.jsx` and `.tsx` files
116
- - [eslint] Update `eslint-plugin-jsdoc` from v35.1.3 to v35.2.0
230
+ - [eslint] Updated `eslint-plugin-jsdoc` from v35.1.3 to v35.2.0
117
231
 
118
232
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.22.3...v1.23.0)
119
233
 
120
234
  ## [1.22.3] - 2021.06.08
121
235
 
122
- - [eslint] Re-add [`eslint-import-resolver-typescript`](https://www.npmjs.com/package/eslint-import-resolver-typescript) for configurations without `webpack.config.js`
236
+ - [eslint] Re-added [`eslint-import-resolver-typescript`](https://www.npmjs.com/package/eslint-import-resolver-typescript) for configurations without `webpack.config.js`
123
237
 
124
238
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.22.2...v1.22.3)
125
239
 
@@ -128,7 +242,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
128
242
  ### Changed
129
243
 
130
244
  - [eslint] Updated `@typescript-eslint/eslint-plugin` from v4.26.0 to v4.26.1
131
- - [eslint] Activate `allowComputed` of [`import/namespace`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/namespace.md) rule
245
+ - [eslint] Activated `allowComputed` of [`import/namespace`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/namespace.md) rule
132
246
 
133
247
  ### Fixed
134
248
 
@@ -160,15 +274,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
160
274
  - [eslint] Updated `eslint-plugin-jsdoc` from v35.0.0 to v35.1.2
161
275
  - [eslint] Updated `eslint-plugin-react` from v7.23.2 to v7.24.0
162
276
  - [eslint] Updated `eslint-plugin-unicorn` from v32.0.1 to v33.0.0
163
- - [eslint] Make use of new "[unicorn/require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/require-array-join-separator.md)" rule
164
- - [eslint] Make use of new "[unicorn/require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/require-number-to-fixed-digits-argument.md)" rule
165
- - [eslint] Make use of new "[unicorn/prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-prototype-methods.md)" rule
166
- - [eslint] Make use of new "[unicorn/prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-object-has-own.md)" rule
167
- - [eslint] Activate "[import/no-import-module-exports](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-import-module-exports.md)" rule
277
+ - [eslint] Make use of new [`unicorn/require-array-join-separator`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/require-array-join-separator.md) rule
278
+ - [eslint] Make use of new [`unicorn/require-number-to-fixed-digits-argument`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/require-number-to-fixed-digits-argument.md) rule
279
+ - [eslint] Make use of new [`unicorn/prefer-prototype-methods`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-prototype-methods.md) rule
280
+ - [eslint] Make use of new [`unicorn/prefer-object-has-own`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-object-has-own.md) rule
281
+ - [eslint] Activated [`import/no-import-module-exports`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-import-module-exports.md) rule
168
282
  - [eslint] Change `@typescript-eslint/method-signature-style` to `property`
169
283
  - [eslint/overrides-react] Activate options `forbidDefaultForRequired` and `ignoreFunctionalComponents` of `react/require-default-props` rule
170
284
  - [eslint] Make use of [`eslint-import-resolver-typescript`](https://www.npmjs.com/package/eslint-import-resolver-typescript) package
171
- - [eslint] Activate "[import/no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md)" rule
285
+ - [eslint] Activated [`import/no-unresolved`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md) rule
172
286
 
173
287
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.21.0...v1.22.0)
174
288
 
@@ -178,7 +292,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
178
292
 
179
293
  - [eslint] Updated `@typescript-eslint` from v4.24.0 to v4.25.0
180
294
  - [eslint] Updated `eslint-plugin-jsdoc` from v34.8.2 to v35.0.0
181
- - [eslint] Active `ignoreNonDOM` option for `jsx-a11y/no-autofocus` rule
295
+ - [eslint] Actived `ignoreNonDOM` option for `jsx-a11y/no-autofocus` rule
182
296
 
183
297
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.20.0...v1.21.0)
184
298
 
@@ -190,7 +304,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
190
304
  - [eslint] Updated `eslint` from v7.26.0 to v7.27.0
191
305
  - [eslint] Updated `eslint-plugin-import` from v2.22.1 to v2.23.3
192
306
  - [eslint] Updated `eslint-plugin-jsdoc` from v34.7.0 to v34.8.2
193
- - [eslint] Activated "[jsdoc/tag-lines](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-tag-lines)" rule
307
+ - [eslint] Activated [`jsdoc/tag-lines`](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-tag-lines) rule
194
308
 
195
309
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.19.0...v1.20.0)
196
310
 
@@ -211,7 +325,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
211
325
 
212
326
  ### Changed
213
327
 
214
- - [eslint] Downgrade `eslint-plugin-import` from v2.23.2 to v2.22.1 because of [this issue](https://github.com/import-js/eslint-plugin-import/issues/2070)
328
+ - [eslint] Downgraded `eslint-plugin-import` from v2.23.2 to v2.22.1 because of [this issue](https://github.com/import-js/eslint-plugin-import/issues/2070)
215
329
  - [eslint] Updated `@typescript-eslint` from v4.23.0 to v4.24.0
216
330
  - [eslint] Updated `eslint-plugin-jsdoc` from v34.6.0 to v34.7.0
217
331
  - [audit] Updated `improved-yarn-audit` from v2.3.2 to v2.3.3
@@ -222,11 +336,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
222
336
 
223
337
  ### Added
224
338
 
225
- - [eslint] Activate the "[import/no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-relative-packages.md)" rule
226
- - [eslint] Make use of new "[jsdoc/multiline-blocks](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-multiline-blocks)" rule
227
- - [eslint] Make use of new "[jsdoc/no-multi-asterisks](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-multi-asterisks)" rule
228
- - [eslint] Added but disabled the "[jsdoc/tag-lines](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-tag-lines)" rule
229
- - [eslint] Added but disabled the "[import/no-import-module-exports](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-import-module-exports.md)" rule
339
+ - [eslint] Activated the [`import/no-relative-packages`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-relative-packages.md) rule
340
+ - [eslint] Make use of new [`jsdoc/multiline-blocks`](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-multiline-blocks) rule
341
+ - [eslint] Make use of new [`jsdoc/no-multi-asterisks`](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-multi-asterisks) rule
342
+ - [eslint] Added but disabled the [`jsdoc/tag-lines`](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-tag-lines) rule
343
+ - [eslint] Added but disabled the [`import/no-import-module-exports`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/no-import-module-exports.md) rule
230
344
  - [eslint/overrides-javascript(-lazy)] Added "args" the the [unicorn/prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v32.0.1/docs/rules/prevent-abbreviations.md) `allowList`.
231
345
 
232
346
  ### Changed
@@ -242,7 +356,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
242
356
 
243
357
  ### Added
244
358
 
245
- - [eslint] Activate the "[unicorn/no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-document-cookie.md)" rule
359
+ - [eslint] Activated the [`unicorn/no-document-cookie`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-document-cookie.md) rule
246
360
  - [audit] Make minimum severity level configurable using `--min-severity`
247
361
 
248
362
  ### Changed
@@ -258,7 +372,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
258
372
 
259
373
  ### Changed
260
374
 
261
- - [eslint/overrides-javascript(-lazy)] The "[@typescript-eslint/no-unsafe-assignment](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-namespace.md)" rule has been disabled for JavaScript files due a
375
+ - [eslint/overrides-javascript(-lazy)] The [`@typescript-eslint/no-unsafe-assignment`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-namespace.md) rule has been disabled for JavaScript files due a
262
376
  [bug in typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/issues/1943)
263
377
  - [stylelint] Updated `stylelint` from v13.13.0 to v13.13.1
264
378
 
@@ -274,7 +388,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
274
388
  ### Changed
275
389
 
276
390
  - [eslint] Updated `eslint-plugin-jsdoc` from v32.3.2 to v33.0.0
277
- - [eslint] Activate `allowDeclarations` options for "[@typescript-eslint/no-namespace](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-namespace.md)" rule
391
+ - [eslint] Activated `allowDeclarations` options for [`@typescript-eslint/no-namespace`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-namespace.md) rule
278
392
 
279
393
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.14.0...v1.15.0)
280
394
 
@@ -282,9 +396,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
282
396
 
283
397
  ### Added
284
398
 
285
- - [stylelint] "[scss/at-function-named-arguments](https://github.com/kristerkari/stylelint-scss/tree/master/src/rules/at-function-named-arguments) now ignores "color.scale", beside "scale-color"
286
- - [stylelint] Activate the "[no-invalid-position-at-import-rule](https://github.com/stylelint/stylelint/tree/master/lib/rules/no-invalid-position-at-import-rule)" rule
287
- - [stylelint] Activate the "[no-irregular-whitespace](https://github.com/stylelint/stylelint/tree/master/lib/rules/no-irregular-whitespace)" rule
399
+ - [stylelint] [`scss/at-function-named-arguments`](https://github.com/kristerkari/stylelint-scss/tree/master/src/rules/at-function-named-arguments) now ignores "color.scale", beside "scale-color"
400
+ - [stylelint] Activated the [`no-invalid-position-at-import-rule`](https://github.com/stylelint/stylelint/tree/master/lib/rules/no-invalid-position-at-import-rule) rule
401
+ - [stylelint] Activated the [`no-irregular-whitespace`](https://github.com/stylelint/stylelint/tree/master/lib/rules/no-irregular-whitespace) rule
288
402
 
289
403
  ### Changed
290
404
 
@@ -292,7 +406,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
292
406
  - [eslint] Updated `eslint-plugin-jest` from v24.3.5 to v24.3.6
293
407
  - [eslint] Updated `eslint-plugin-jsdoc` from v32.3.1 to v32.3.2
294
408
  - [stylelint] Updated `stylelint` from v13.12.0 to v13.13.0
295
- - [stylelint] Added but disabled new "[selector-disallowed-list](https://github.com/stylelint/stylelint/tree/master/lib/rules/selector-disallowed-list)" rule
409
+ - [stylelint] Added but disabled new [`selector-disallowed-list`](https://github.com/stylelint/stylelint/tree/master/lib/rules/selector-disallowed-list) rule
296
410
 
297
411
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.13.1...v1.14.0)
298
412
 
@@ -300,7 +414,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
300
414
 
301
415
  ### Changed
302
416
 
303
- - [eslint] Disable "[unicorn/no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-undefined.md)" option `checkArguments`
417
+ - [eslint] Disabled [`unicorn/no-useless-undefined`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-undefined.md) option `checkArguments`
304
418
 
305
419
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.13.0...v1.13.1)
306
420
 
@@ -308,16 +422,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
308
422
 
309
423
  ### Added
310
424
 
311
- - [eslint] Activate the "[unicorn/no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-undefined.md)" rule
425
+ - [eslint] Activated the [`unicorn/no-useless-undefined`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-undefined.md) rule
312
426
 
313
427
  ### Changed
314
428
 
315
429
  - [eslint] Updated `eslint-plugin-unicorn` from v29.0.0 to v31.0.0
316
- - [eslint] Make use of new "[unicorn/prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-switch.md)" rule
317
- - [eslint] Disable new "[unicorn/prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-node-protocol.md)" rule, till it's widely supported
318
- - [eslint] Disable new "[unicorn/prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-module.md)" rule, till it's wider supported
430
+ - [eslint] Make use of new [`unicorn/prefer-switch`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-switch.md) rule
431
+ - [eslint] Disabled new [`unicorn/prefer-node-protocol`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-node-protocol.md) rule, till it's widely supported
432
+ - [eslint] Disabled new [`unicorn/prefer-module`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-module.md) rule, till it's wider supported
319
433
  - [eslint] Updated `stylelint-selector-tag-no-without-class` from v2.0.3 to v2.0.4
320
- - [eslint] Update `eslint-plugin-jsdoc` from v32.3.0 to v32.3.1
434
+ - [eslint] Updated `eslint-plugin-jsdoc` from v32.3.0 to v32.3.1
321
435
 
322
436
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.12.0...v1.13.0)
323
437
 
@@ -327,7 +441,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
327
441
 
328
442
  - [stylelint] Disallow all tag selectors without class in CSS Modules, using the [stylelint-selector-tag-no-without-class](https://github.com/Moxio/stylelint-selector-tag-no-without-class) plugin (only `from`/`to` is allowed, because of
329
443
  [this issue](https://github.com/Moxio/stylelint-selector-tag-no-without-class/issues/5))
330
- - [stylelint] Activate the "[order/order](https://github.com/hudochenkov/stylelint-order/blob/master/rules/order/README.md)" rule and enforce this order:
444
+ - [stylelint] Activated the [`order/order`](https://github.com/hudochenkov/stylelint-order/blob/master/rules/order/README.md) rule and enforce this order:
331
445
  - "dollar-variables"
332
446
  - `@extend`
333
447
  - `@include`
@@ -338,7 +452,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
338
452
  - `@keyframes`
339
453
 
340
454
  (other at-rules can be used everywhere)
341
- - [stylelint] Activate the "[scss/no-global-function-names](https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/no-global-function-names/README.md)" rule
455
+ - [stylelint] Activated the [`scss/no-global-function-names`](https://github.com/kristerkari/stylelint-scss/blob/master/src/rules/no-global-function-names/README.md) rule
342
456
 
343
457
  ### Changed
344
458
 
@@ -351,8 +465,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
351
465
 
352
466
  ### Changed
353
467
 
354
- - [eslint] Disable "[unicorn/prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-spread.md)" because of false-positives for non-array objects (like non-iterables or typed arrays).
355
- - [eslint/overrides-javascript-lazy] Disable "[@typescript-eslint/no-unsafe-argument](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-unsafe-argument.md)"
468
+ - [eslint] Disabled [`unicorn/prefer-spread`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-spread.md) because of false-positives for non-array objects (like non-iterables or typed arrays).
469
+ - [eslint/overrides-javascript-lazy] Disable [`@typescript-eslint/no-unsafe-argument`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-unsafe-argument.md)
356
470
 
357
471
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.10.0...v1.11.0)
358
472
 
@@ -362,12 +476,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
362
476
 
363
477
  - [tsc] Lazy peer dependency check for TypeScript, instead of forcing a specific version
364
478
  - [eslint] Updated `eslint` from v7.22.0 to v4.24.0
365
- - [eslint] Make use of `eslint` option "disallowTemplateShorthand" of "[no-implicit-coercion](https://eslint.org/docs/rules/no-implicit-coercion)"
479
+ - [eslint] Make use of `eslint` option "disallowTemplateShorthand" of [`no-implicit-coercion`](https://eslint.org/docs/rules/no-implicit-coercion)
366
480
  - [eslint] Updated `@typescript-eslint` from v4.19.0 to v4.22.0
367
- - [eslint] Make use of new "[@typescript-eslint/no-unsafe-argument](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin/docs/rules/no-unsafe-argument.md)" rule
481
+ - [eslint] Make use of new [`@typescript-eslint/no-unsafe-argument`](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin/docs/rules/no-unsafe-argument.md) rule
368
482
  - [eslint] Updated `eslint-plugin-jest` from v24.3.2 to v24.3.5
369
483
  - [eslint] Updated `eslint-plugin-react` from v7.22.0 to v7.23.2
370
- - [eslint] Make use of new "[react/no-unstable-nested-components](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unstable-nested-components.md)" rule
484
+ - [eslint] Make use of new [`react/no-unstable-nested-components`](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unstable-nested-components.md) rule
371
485
  - [sass] Updated `stylelint-selector-no-empty` from v1.0.7 to v1.0.8
372
486
  - [audit] Updated `better-npm-audit` from v1.0.7 to v1.0.8
373
487
 
@@ -379,7 +493,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
379
493
 
380
494
  - [eslint] Updated `@typescript-eslint` to v4.19.0
381
495
  - [eslint] Updated `eslint-plugin-unicorn` to v29.0.0
382
- - [eslint] Make use of `eslint-plugin-unicorn` "[no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-static-only-class.md)" and "[prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-array-flat.md)" rule
496
+ - [eslint] Make use of `eslint-plugin-unicorn` [`no-static-only-class`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-static-only-class.md) and [`prefer-array-flat`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-array-flat.md) rule
383
497
 
384
498
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v1.8.0...v1.9.0)
385
499
 
@@ -398,7 +512,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
398
512
 
399
513
  ### Changed
400
514
 
401
- - [general] Move `check-outdated` dependency to devDependencies
515
+ - [general] Moved `check-outdated` dependency to devDependencies
402
516
  - [eslint] Updated `"eslint-plugin-jest` to v24.3.2
403
517
  - [markdownlint] [`MD024`](https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md024---multiple-headings-with-the-same-content): Activate
404
518
  "siblings_only" option
package/README.md CHANGED
@@ -42,13 +42,21 @@ Beside that, the following additional rules are part of this bundle:
42
42
  ### stylelint
43
43
 
44
44
  - [stylelint-declaration-block-no-ignored-properties](https://www.npmjs.com/package/stylelint-declaration-block-no-ignored-properties)
45
- - [stylelint-high-performance-animation](https://www.npmjs.com/package/stylelint-high-performance-animation)
45
+ - [stylelint-high-performance-animation](https://www.npmjs.com/package/stylelint-high-performance-animation) (Forked version)
46
46
  - [stylelint-order](https://www.npmjs.com/package/stylelint-order)
47
47
  - [stylelint-scss](https://www.npmjs.com/package/stylelint-scss)
48
48
  - [stylelint-selector-no-empty](https://www.npmjs.com/package/stylelint-selector-no-empty)
49
- - [stylelint-selector-tag-no-without-class](https://github.com/Moxio/stylelint-selector-tag-no-without-class)
49
+ - [stylelint-selector-tag-no-without-class](https://www.npmjs.com/package/stylelint-selector-tag-no-without-class) (Forked version)
50
50
  - [stylelint-use-logical-spec](https://www.npmjs.com/package/stylelint-use-logical-spec)
51
- - [stylelint-use-nesting](https://www.npmjs.com/package/stylelint-use-nesting)
51
+
52
+ ### Previously used, but now unmaintained plugins
53
+
54
+ Unfortunately a couple of previously used plugins are not regularly maintained or depend on unmaintained third-party code which blocks them from updating, so they don't provide updates for the major releases of the linters (ESLint and Stylelint).
55
+ For that reason the following plugins are not used anymore:
56
+
57
+ - [stylelint-use-nesting](https://www.npmjs.com/package/stylelint-use-nesting) (removed on 2021-11-05)
58
+
59
+ If these plugins are maintained again, the plugins will also be used again.
52
60
 
53
61
  ## Install
54
62
 
@@ -310,7 +318,7 @@ This can be done by adding these options to your `.vscode/settings.json`:
310
318
  {
311
319
  "eslint.nodePath": "./node_modules/linter-bundle/node_modules/eslint",
312
320
  "eslint.options": {
313
- "configFile": "./.eslintrc.js",
321
+ "overrideConfigFile": "./.eslintrc.js",
314
322
  "resolvePluginsRelativeTo": "./node_modules/linter-bundle",
315
323
  "rulePaths": ["./node_modules/linter-bundle/eslint/rules"],
316
324
  "reportUnusedDisableDirectives": "error",