You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will clearly show the issue / need for enhancement?
Run dartfmt -t on attached foo.dart
Observe that imports are not in order.
What is the current output?
`
import 'package:a_star/a_star_2d.dart';
import 'package:zx/zx.dart';
import 'dart:convert';
import 'dart:async';
import 'package:a_star/a_star.dart';
void main() {
}
`
What would you like to see instead?
`
import 'dart:convert';
import 'dart:async';
import 'package:a_star/a_star.dart';
import 'package:a_star/a_star_2d.dart';
import 'package:zx/zx.dart';
void main() {
}
`
What version of the product are you using? On what operating system?
Dart VM version: 1.5.3 (Thu Jul 3 02:27:23 2014) on "macos_x64"
Correction on "What would you like to see":
`
import 'dart:async';
import 'dart:convert';
import 'package:a_star/a_star.dart';
import 'package:a_star/a_star_2d.dart';
import 'package:zx/zx.dart';
This issue was originally filed by [email protected]
What steps will clearly show the issue / need for enhancement?
dartfmt -t
on attached foo.dartWhat is the current output?
`
import 'package:a_star/a_star_2d.dart';
import 'package:zx/zx.dart';
import 'dart:convert';
import 'dart:async';
import 'package:a_star/a_star.dart';
void main() {
}
`
What would you like to see instead?
`
import 'dart:convert';
import 'dart:async';
import 'package:a_star/a_star.dart';
import 'package:a_star/a_star_2d.dart';
import 'package:zx/zx.dart';
void main() {
}
`
What version of the product are you using? On what operating system?
Dart VM version: 1.5.3 (Thu Jul 3 02:27:23 2014) on "macos_x64"
Please provide any additional information below.
Attachment:
foo.dart (166 Bytes)
The text was updated successfully, but these errors were encountered: