-
-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Labels
Description
hi, is porting over import-js/eslint-plugin-import#3043 in plans?
original issues: import-js/eslint-plugin-import#1787 and import-js/eslint-plugin-import#2553
from the description of the linked PR:
Reports error:
import { Bravo, Alpha } from 'foo';
const { Delta, Charlie } = require('foo');
export { Foxtrot, Echo } from 'foo';
export { Alpha as Hotel, India, Alpha as Golf };
Fixed code:
import { Alpha, Bravo } from 'foo';
const { Charlie, Delta } = require('foo');
export { Echo, Foxtrot } from 'foo';
export { Alpha as Golf, Alpha as Hotel, India } from 'foo';
Mnigos, AriPerkkio and TrevorBurnham