@commercetools-backend/eslint-config-node 22.24.0 → 22.25.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 +8 -0
- package/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @commercetools-backend/eslint-config-node
|
|
2
2
|
|
|
3
|
+
## 22.25.1
|
|
4
|
+
|
|
5
|
+
## 22.25.0
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#3499](https://github.com/commercetools/merchant-center-application-kit/pull/3499) [`0d48d6c`](https://github.com/commercetools/merchant-center-application-kit/commit/0d48d6c0770f2ab6c0f80597fba54dc0f13a3172) Thanks [@emmenko](https://github.com/emmenko)! - Leftovers for migrating from `eslint-plugin-node` to `eslint-plugin-n`
|
|
10
|
+
|
|
3
11
|
## 22.24.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/index.js
CHANGED
|
@@ -62,8 +62,8 @@ module.exports = {
|
|
|
62
62
|
|
|
63
63
|
rules: {
|
|
64
64
|
// Nodejs
|
|
65
|
-
'
|
|
66
|
-
'
|
|
65
|
+
'n/no-missing-import': statusCode.off,
|
|
66
|
+
'n/no-unsupported-features/es-syntax': statusCode.off,
|
|
67
67
|
|
|
68
68
|
// NOTE: The regular rule does not support do-expressions. The equivalent rule of babel does.
|
|
69
69
|
'no-unused-expressions': statusCode.off,
|
|
@@ -106,7 +106,7 @@ module.exports = {
|
|
|
106
106
|
'jest/globals': true,
|
|
107
107
|
},
|
|
108
108
|
rules: {
|
|
109
|
-
'
|
|
109
|
+
'n/no-extraneous-require': [
|
|
110
110
|
statusCode.error,
|
|
111
111
|
{
|
|
112
112
|
allowModules: ['jest-each', 'msw'],
|
package/package.json
CHANGED