@metamask/eslint-config-typescript 12.0.0 → 12.1.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 +6 -1
- package/README.md +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [12.1.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- Add support for typescript 5.0.x, 5.1.x ([#288](https://github.com/MetaMask/eslint-config/pull/288))
|
|
12
|
+
|
|
9
13
|
## [12.0.0]
|
|
10
14
|
### Added
|
|
11
15
|
- **BREAKING:** Add rule to enforce generic parameters have a length of at least 3 characters ([#292](https://github.com/MetaMask/eslint-config/pull/292))
|
|
@@ -103,7 +107,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
103
107
|
- To continue extending this config, install this package and update your `.eslintrc.js` `extends` array to include `@metamask/eslint-config-typescript` instead of `@metamask/eslint-config/typescript`.
|
|
104
108
|
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))
|
|
105
109
|
|
|
106
|
-
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.
|
|
110
|
+
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.1.0...HEAD
|
|
111
|
+
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/v12.0.0...v12.1.0
|
|
107
112
|
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...v12.0.0
|
|
108
113
|
[11.1.0]: https://github.com/MetaMask/eslint-config/compare/v11.0.2...v11.1.0
|
|
109
114
|
[11.0.2]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.0.2
|
package/README.md
CHANGED
|
@@ -12,8 +12,8 @@ yarn add --dev \
|
|
|
12
12
|
@typescript-eslint/parser@^5.42.1 \
|
|
13
13
|
eslint@^8.27.0 \
|
|
14
14
|
eslint-config-prettier@^8.5.0 \
|
|
15
|
-
eslint-plugin-import@^2.
|
|
16
|
-
eslint-plugin-jsdoc@^
|
|
15
|
+
eslint-plugin-import@^2.27.5 \
|
|
16
|
+
eslint-plugin-jsdoc@^41.1.2 \
|
|
17
17
|
eslint-plugin-prettier@^4.2.1 \
|
|
18
18
|
eslint-plugin-promise@^6.1.1 \
|
|
19
19
|
prettier@^2.7.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/eslint-config-typescript",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"description": "Shareable MetaMask ESLint config for TypeScript.",
|
|
5
5
|
"homepage": "https://github.com/MetaMask/eslint-config#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
"@typescript-eslint/parser": "^5.42.1",
|
|
30
30
|
"eslint": "^8.27.0",
|
|
31
31
|
"eslint-config-prettier": "^8.5.0",
|
|
32
|
-
"eslint-plugin-import": "^2.
|
|
33
|
-
"eslint-plugin-jsdoc": "^
|
|
32
|
+
"eslint-plugin-import": "^2.27.5",
|
|
33
|
+
"eslint-plugin-jsdoc": "^41.1.2",
|
|
34
34
|
"eslint-plugin-prettier": "^4.2.1",
|
|
35
35
|
"prettier": "^2.7.1",
|
|
36
|
-
"typescript": "
|
|
36
|
+
"typescript": "^5.1.6"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@metamask/eslint-config": "^12.0.0",
|
|
40
40
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
41
41
|
"@typescript-eslint/parser": "^5.42.1",
|
|
42
42
|
"eslint": "^8.27.0",
|
|
43
|
-
"typescript": "~4.8.4"
|
|
43
|
+
"typescript": "~4.8.4 || ~5.0 || ~5.1"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=14.0.0"
|