We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7be3a9 commit 781afd6Copy full SHA for 781afd6
packages/eslint-config-typescript/index.mjs
@@ -426,5 +426,11 @@ export default defineConfig({
426
// nice for a library-like projects to clearly declare return types on public APIs but for general backend
427
// applications it's too much.
428
'@typescript-eslint/explicit-function-return-type': ['off', {}],
429
+
430
+ // TypeScript already checks for problems reported by this rule, and this rule seems to fail when checking imports
431
+ // from a "collector" file that contains an `export * from './module'` statement, like an `index.ts` file.
432
+ 'import/named': 'off',
433
+ // TypeScript already checks for problems reported by this rule.
434
+ 'import/no-unresolved': 'off',
435
},
436
})
0 commit comments