← Back

no-duplicate-imports warning

Disallow duplicate imports

Examples

❌  Incorrect

import { merge } from 'module';
import something from 'another-module';
import { find } from 'module';

✅  Correct

import { merge, find } from 'module';
import something from 'another-module';