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