import_sorter icon indicating copy to clipboard operation
import_sorter copied to clipboard

Add possibility to sort export from barrel files

Open rodrigobastosv opened this issue 4 years ago • 2 comments

Describe the solution you'd like It would be great if we could have the possibility to sort the export from our barrel files

Additional context Let's supose we have a barrel file like this:

export 'a.dart';
export 'c.dart';
export 'd.dart';
export 'b.dart';
export 'e.dart';

It would be great if the tool also sorts these kind of files. The expected result would be something like this:

export 'a.dart';
export 'b.dart';
export 'c.dart';
export 'd.dart';
export 'e.dart';

rodrigobastosv avatar Feb 10 '21 11:02 rodrigobastosv

👋 Hello! Thanks for submitting a issue! @Matt-Gleich will try to respond as soon as possible.

github-actions[bot] avatar Feb 10 '21 11:02 github-actions[bot]

See #63

gleich avatar Dec 07 '21 20:12 gleich