eslint-config-gristow 3.0.2-alpha.1 → 3.0.3
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 +4 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -116,6 +116,10 @@ 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',
|
|
121
|
+
// Disable no-unnecessary-condition - false positives with Svelte reactivity
|
|
122
|
+
'@typescript-eslint/no-unnecessary-condition': 'off',
|
|
119
123
|
},
|
|
120
124
|
},
|
|
121
125
|
|