We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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';
The text was updated successfully, but these errors were encountered:
👋 Hello! Thanks for submitting a issue! @Matt-Gleich will try to respond as soon as possible.
Sorry, something went wrong.
See #63
No branches or pull requests
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:
It would be great if the tool also sorts these kind of files. The expected result would be something like this:
The text was updated successfully, but these errors were encountered: