Open
Description
Steps to reproduce:
dart create -t console test_format
cd test_format
dart pub add args
Create following file under lib
import "dart:io";
import "package:args/args.dart";
void func() {
}
Call dart format .
As stated in Effective Dart: Style, the file should be changed to:
import "dart:io";
import "package:args/args.dart";
void func() {
}
but it does not.
- Dart SDK version: 2.17.5 (stable) (Tue Jun 21 11:05:10 2022 +0200) on "windows_x64"