Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 240 Bytes

import-dedupe.md

File metadata and controls

19 lines (14 loc) · 240 Bytes

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'