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
Hi, thanks for the nice extension!
There is an issue with files that have comments before the import statements, for example source file headers such as:
/* * File: xyz.dart * Project: ABC * Created: 2021-05-06 14:15:51 */ import 'file.dart';
Parsing stops if the first non-empty line is not an import statement which means no import fixing will be done on files like these.
https://github.com/luanpotter/vscode-dart-import/blob/28c375f14c8f0d87e96c6af567dacee91523143c/src/main.ts#L47-L49
Changing line 48 to continue; should fix it.
continue;
The text was updated successfully, but these errors were encountered:
Me too.
Sorry, something went wrong.
No branches or pull requests
Hi, thanks for the nice extension!
There is an issue with files that have comments before the import statements, for example source file headers such as:
Parsing stops if the first non-empty line is not an import statement which means no import fixing will be done on files like these.
https://github.com/luanpotter/vscode-dart-import/blob/28c375f14c8f0d87e96c6af567dacee91523143c/src/main.ts#L47-L49
Changing line 48 to
continue;
should fix it.The text was updated successfully, but these errors were encountered: