@graphcommerce/eslint-config-pwa 9.0.0-canary.108 → 9.0.0-canary.110
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 +4 -0
- package/index.js +5 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/index.js
CHANGED
|
@@ -62,7 +62,7 @@ module.exports = {
|
|
|
62
62
|
],
|
|
63
63
|
},
|
|
64
64
|
],
|
|
65
|
-
'import/order':
|
|
65
|
+
'import/order': 'off', // Handled by prettier
|
|
66
66
|
'import/no-relative-packages': 'error',
|
|
67
67
|
|
|
68
68
|
// next
|
|
@@ -192,10 +192,13 @@ module.exports = {
|
|
|
192
192
|
},
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
|
-
files: ['**/*.spec.ts', '**/*.spec.tsx'],
|
|
195
|
+
files: ['**/*.spec.ts', '**/*.spec.tsx', '**/__tests__/**'],
|
|
196
196
|
env: {
|
|
197
197
|
jest: true,
|
|
198
198
|
},
|
|
199
|
+
rules: {
|
|
200
|
+
'import/no-extraneous-dependencies': 'off',
|
|
201
|
+
},
|
|
199
202
|
},
|
|
200
203
|
// JavaScript files override
|
|
201
204
|
{
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/eslint-config-pwa",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.110",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@graphcommerce/typescript-config-pwa": "9.0.0-canary.
|
|
8
|
+
"@graphcommerce/typescript-config-pwa": "9.0.0-canary.110",
|
|
9
9
|
"@next/eslint-plugin-next": "15.0.3",
|
|
10
10
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
11
11
|
"@typescript-eslint/parser": "^7.18.0",
|