@graphcommerce/eslint-config-pwa 9.0.0-canary.109 → 9.0.0-canary.111

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.111
4
+
5
+ ## 9.0.0-canary.110
6
+
3
7
  ## 9.0.0-canary.109
4
8
 
5
9
  ## 9.0.0-canary.108
package/index.js CHANGED
@@ -62,7 +62,7 @@ module.exports = {
62
62
  ],
63
63
  },
64
64
  ],
65
- 'import/order': ['warn', { alphabetize: { order: 'asc' } }],
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.109",
5
+ "version": "9.0.0-canary.111",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@graphcommerce/typescript-config-pwa": "9.0.0-canary.109",
8
+ "@graphcommerce/typescript-config-pwa": "9.0.0-canary.111",
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",