# import-dedupe Auto-fix import deduplication. ## Rule Details ```js // 👎 bad import { Foo, Bar, Foo } from 'foo' ``` Will be fixed to: ```js // 👍 good import { Foo, Bar } from 'foo' ```