eslint-config-gristow 3.0.2-alpha.1 → 3.0.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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -116,6 +116,8 @@ export default defineConfig(
116
116
  rules: {
117
117
  // Svelte 5 $props() requires 'let' for reactive destructuring
118
118
  'prefer-const': 'off',
119
+ // Disable import/no-duplicates - same issue as TS files with .d.ts resolution
120
+ 'import/no-duplicates': 'off',
119
121
  },
120
122
  },
121
123
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gristow",
3
- "version": "3.0.2-alpha.1",
3
+ "version": "3.0.2",
4
4
  "description": "ESLint 9 flat config for JavaScript and TypeScript projects",
5
5
  "type": "module",
6
6
  "main": "index.js",