| OLD | NEW |
| 1 40 columns | | 1 40 columns | |
| 2 >>> require at least one newline between directives | 2 >>> require at least one newline between directives |
| 3 import 'a.dart';import 'b.dart';export 'c.dart'; | 3 import 'a.dart';import 'b.dart';export 'c.dart'; |
| 4 <<< | 4 <<< |
| 5 import 'a.dart'; | 5 import 'a.dart'; |
| 6 import 'b.dart'; | 6 import 'b.dart'; |
| 7 export 'c.dart'; | 7 export 'c.dart'; |
| 8 >>> allow an extra newline between directives | 8 >>> allow an extra newline between directives |
| 9 import 'a.dart'; | 9 import 'a.dart'; |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 a; | 38 a; |
| 39 <<< | 39 <<< |
| 40 import 'a.dart' deferred as a; | 40 import 'a.dart' deferred as a; |
| 41 >>> part of | 41 >>> part of |
| 42 part of foo; | 42 part of foo; |
| 43 <<< | 43 <<< |
| 44 part of foo; | 44 part of foo; |
| 45 >>> long part of does not wrap | 45 >>> long part of does not wrap |
| 46 part of some_very_long_library_name_that_wraps; | 46 part of some_very_long_library_name_that_wraps; |
| 47 <<< | 47 <<< |
| 48 part of some_very_long_library_name_that_wraps; | 48 part of some_very_long_library_name_that_wraps; |
| 49 >>> no spaces between library identifiers |
| 50 library a . b . c; |
| 51 <<< |
| 52 library a.b.c; |
| OLD | NEW |