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.
- package/index.js +2 -0
- 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
|
|