blob: 581d8ad03f5e4c7797817b73df51e7c5a66bc518 [file] [log] [blame]
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';