linter-bundle 2.5.0 → 2.6.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 +11 -1
- package/eslint/index.js +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,17 @@ 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/v2.
|
|
9
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.6.0...HEAD)
|
|
10
|
+
|
|
11
|
+
## [2.6.0] - 2022.02.14
|
|
12
|
+
|
|
13
|
+
- [eslint] Updated `@typescript-eslint/eslint-plugin` from v5.11.0 to v5.12.0
|
|
14
|
+
- [eslint] Updated `@typescript-eslint/parser` from v5.11.0 to v5.12.0
|
|
15
|
+
- [eslint] Updated `eslint` from v8.8.0 to v8.9.0
|
|
16
|
+
- [eslint] Updated `eslint-plugin-jsdoc` from v37.8.2 to v37.9.1
|
|
17
|
+
- [eslint] Ignore `generics` in [@typescript-eslint/comma-dangle](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/comma-dangle.md) to allow [generic component definitions for function components](https://wanago.io/2020/03/09/functional-react-components-with-generic-props-in-typescript/#crayon-620a96e97d44a141656396)
|
|
18
|
+
|
|
19
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.5.0...v2.6.0)
|
|
10
20
|
|
|
11
21
|
## [2.5.0] - 2022.02.11
|
|
12
22
|
|
package/eslint/index.js
CHANGED
|
@@ -416,7 +416,9 @@ module.exports = {
|
|
|
416
416
|
}],
|
|
417
417
|
'@typescript-eslint/brace-style': ['error', 'stroustrup', { allowSingleLine: true }],
|
|
418
418
|
'@typescript-eslint/class-literal-property-style': 'error',
|
|
419
|
-
'@typescript-eslint/comma-dangle': ['error',
|
|
419
|
+
'@typescript-eslint/comma-dangle': ['error', {
|
|
420
|
+
generics: 'ignore'
|
|
421
|
+
}],
|
|
420
422
|
'@typescript-eslint/comma-spacing': 'error',
|
|
421
423
|
'@typescript-eslint/consistent-indexed-object-style': 'error',
|
|
422
424
|
'@typescript-eslint/consistent-type-assertions': 'error',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linter-bundle",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"check-outdated": "npx --yes -- check-outdated --ignore-pre-releases"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
43
|
-
"@typescript-eslint/parser": "5.
|
|
44
|
-
"eslint": "8.
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "5.12.0",
|
|
43
|
+
"@typescript-eslint/parser": "5.12.0",
|
|
44
|
+
"eslint": "8.9.0",
|
|
45
45
|
"eslint-import-resolver-typescript": "2.5.0",
|
|
46
46
|
"eslint-import-resolver-webpack": "0.13.2",
|
|
47
47
|
"eslint-plugin-eslint-comments": "3.2.0",
|
|
48
48
|
"eslint-plugin-functional": "4.2.0",
|
|
49
49
|
"eslint-plugin-import": "2.25.4",
|
|
50
50
|
"eslint-plugin-jest": "26.1.0",
|
|
51
|
-
"eslint-plugin-jsdoc": "37.
|
|
51
|
+
"eslint-plugin-jsdoc": "37.9.1",
|
|
52
52
|
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
53
53
|
"eslint-plugin-node": "11.1.0",
|
|
54
54
|
"eslint-plugin-promise": "6.0.0",
|