Skip to content

Commit 7d6632f

Browse files
oprypincopybara-github
authored andcommitted
Sort import directives in all *.dart code
PiperOrigin-RevId: 604314093
1 parent 0422551 commit 7d6632f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

analysis_options.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ analyzer:
66

77
linter:
88
rules:
9+
- combinators_ordering
910
- comment_references
11+
- directives_ordering
1012
- test_types_in_equals
11-
- throw_in_finally
13+
- throw_in_finally

lib/mockito.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
// ignore: deprecated_member_use
1616
export 'package:test_api/fake.dart' show Fake;
1717

18+
export 'src/dummies.dart'
19+
show provideDummy, provideDummyBuilder, MissingDummyValueError;
1820
export 'src/mock.dart'
1921
show
2022
Mock,
@@ -53,5 +55,3 @@ export 'src/mock.dart'
5355
MissingStubError,
5456
FakeUsedError,
5557
FakeFunctionUsedError;
56-
export 'src/dummies.dart'
57-
show provideDummy, provideDummyBuilder, MissingDummyValueError;

0 commit comments

Comments
 (0)