import-sort
import-sort copied to clipboard
Add ability to remove duplicated imports members
Considering the input
import {uniqBy, uniqBy} from 'lodash'
Would it be possible to deduplicate the import members so it looks like this?
import {uniqBy} from 'lodash`
Maybe this is already possible with the style API but I couldn't tell 😅