eslint-config-gristow 3.0.2 → 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 +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -118,6 +118,8 @@ export default defineConfig(
|
|
|
118
118
|
'prefer-const': 'off',
|
|
119
119
|
// Disable import/no-duplicates - same issue as TS files with .d.ts resolution
|
|
120
120
|
'import/no-duplicates': 'off',
|
|
121
|
+
// Disable no-unnecessary-condition - false positives with Svelte reactivity
|
|
122
|
+
'@typescript-eslint/no-unnecessary-condition': 'off',
|
|
121
123
|
},
|
|
122
124
|
},
|
|
123
125
|
|