| 40 columns | |
| >>> Remove blank lines at top of file. |
| |
| |
| // comment |
| <<< |
| // comment |
| >>> Remove blank lines at end of file. |
| // comment |
| |
| |
| |
| |
| <<< |
| // comment |
| >>> Keep up to one blank line between top level comments. |
| |
| // one |
| |
| // two |
| // three |
| |
| |
| |
| // four |
| |
| |
| <<< |
| // one |
| |
| // two |
| // three |
| |
| // four |
| >>> Remove extra spaces between adjacent inline block comments. |
| /* foo */ /* bar */ |
| <<< |
| /* foo */ /* bar */ |
| >>> Inline comment between different kinds of directives. |
| library a; /* comment */ import 'b.dart'; |
| <<< |
| library a; /* comment */ |
| |
| import 'b.dart'; |
| >>> Inline comment between directives. |
| import 'a.dart'; /* comment */ import 'b.dart'; |
| <<< |
| import 'a.dart'; /* comment */ |
| import 'b.dart'; |
| >>> Inline comment after directive. |
| import 'a.dart'; /* comment */ |
| import 'b.dart'; |
| <<< |
| import 'a.dart'; /* comment */ |
| import 'b.dart'; |
| >>> Inline comment before directive. |
| import 'a.dart'; |
| /* comment */ import 'b.dart'; |
| <<< |
| import 'a.dart'; |
| /* comment */ |
| import 'b.dart'; |