Skip to main content

Disallow duplicate imports (no-duplicate-imports)

Rule Details

This rule extends the base eslint/no-duplicate-imports rule. This version adds support for type-only import and export.

How to use

{
// note you must disable the base rule as it can report incorrect errors
"no-duplicate-imports": "off",
"@typescript-eslint/no-duplicate-imports": ["error"]
}

Options

See eslint/no-duplicate-imports options.

Taken with โค๏ธ [from ESLint core](https://github.com/eslint/eslint/blob/master/docs/rules/no-duplicate-imports.md)

Attributes

  • โœ… Recommended
  • ๐Ÿ”ง Fixable
  • ๐Ÿ’ญ Requires type information