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.
Files changed (2) hide show
  1. package/index.js +4 -0
  2. 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
 
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.3",
4
4
  "description": "ESLint 9 flat config for JavaScript and TypeScript projects",
5
5
  "type": "module",
6
6
  "main": "index.js",