@commercetools-backend/eslint-config-node 21.14.0 → 21.14.2
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 +14 -0
- package/index.js +0 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @commercetools-backend/eslint-config-node
|
|
2
2
|
|
|
3
|
+
## 21.14.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2776](https://github.com/commercetools/merchant-center-application-kit/pull/2776) [`00d9edcb4`](https://github.com/commercetools/merchant-center-application-kit/commit/00d9edcb49a144797ba3690db012e429e88a30fa) Thanks [@renovate](https://github.com/apps/renovate)! - Update dependencies
|
|
8
|
+
|
|
9
|
+
## 21.14.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#2797](https://github.com/commercetools/merchant-center-application-kit/pull/2797) [`03e9772de`](https://github.com/commercetools/merchant-center-application-kit/commit/03e9772def9106107a192c9c93a05f4e49e5f124) Thanks [@tdeekens](https://github.com/tdeekens)! - Remove `jest/no-jest-import` rule from ESLint configs.
|
|
14
|
+
|
|
15
|
+
This allows consumers of our configs to update to `eslint-plugin-jest` v27 which removes the rule as a breaking change.
|
|
16
|
+
|
|
3
17
|
## 21.14.0
|
|
4
18
|
|
|
5
19
|
## 21.13.1
|
package/index.js
CHANGED
|
@@ -117,7 +117,6 @@ module.exports = {
|
|
|
117
117
|
'jest/no-identical-title': statusCode.error,
|
|
118
118
|
'jest/no-interpolation-in-snapshots': statusCode.error,
|
|
119
119
|
'jest/no-jasmine-globals': statusCode.error,
|
|
120
|
-
'jest/no-jest-import': statusCode.error,
|
|
121
120
|
'jest/no-mocks-import': statusCode.error,
|
|
122
121
|
'jest/valid-describe-callback': statusCode.error,
|
|
123
122
|
'jest/valid-expect': statusCode.error,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-backend/eslint-config-node",
|
|
3
|
-
"version": "21.14.
|
|
3
|
+
"version": "21.14.2",
|
|
4
4
|
"description": "ESLint config for Node.js projects.",
|
|
5
5
|
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
|
|
6
6
|
"repository": {
|
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@babel/core": "^7.
|
|
19
|
-
"@babel/eslint-parser": "^7.18.
|
|
20
|
-
"@babel/preset-env": "^7.
|
|
18
|
+
"@babel/core": "^7.19.0",
|
|
19
|
+
"@babel/eslint-parser": "^7.18.9",
|
|
20
|
+
"@babel/preset-env": "^7.19.0",
|
|
21
21
|
"@babel/preset-typescript": "^7.18.6",
|
|
22
22
|
"@rushstack/eslint-patch": "^1.1.4",
|
|
23
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
24
|
-
"@typescript-eslint/parser": "^5.
|
|
23
|
+
"@typescript-eslint/eslint-plugin": "^5.37.0",
|
|
24
|
+
"@typescript-eslint/parser": "^5.37.0",
|
|
25
25
|
"eslint-config-prettier": "^8.5.0",
|
|
26
|
-
"eslint-import-resolver-typescript": "^3.
|
|
26
|
+
"eslint-import-resolver-typescript": "^3.5.1",
|
|
27
27
|
"eslint-plugin-import": "^2.26.0",
|
|
28
|
-
"eslint-plugin-jest": "^26.
|
|
28
|
+
"eslint-plugin-jest": "^26.9.0",
|
|
29
29
|
"eslint-plugin-node": "^11.1.0",
|
|
30
30
|
"eslint-plugin-prettier": "^4.2.1"
|
|
31
31
|
},
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@tsconfig/node16": "^1.0.3",
|
|
37
|
-
"eslint": "8.
|
|
37
|
+
"eslint": "8.23.1"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=14"
|