Skip to content

Commit

Permalink
Sort import directives in all *.dart code
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 604314093
  • Loading branch information
oprypin authored and copybara-github committed Feb 5, 2024
1 parent 0422551 commit 7d6632f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ analyzer:

linter:
rules:
- combinators_ordering
- comment_references
- directives_ordering
- test_types_in_equals
- throw_in_finally
- throw_in_finally
4 changes: 2 additions & 2 deletions lib/mockito.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// ignore: deprecated_member_use
export 'package:test_api/fake.dart' show Fake;

export 'src/dummies.dart'
show provideDummy, provideDummyBuilder, MissingDummyValueError;
export 'src/mock.dart'
show
Mock,
Expand Down Expand Up @@ -53,5 +55,3 @@ export 'src/mock.dart'
MissingStubError,
FakeUsedError,
FakeFunctionUsedError;
export 'src/dummies.dart'
show provideDummy, provideDummyBuilder, MissingDummyValueError;

0 comments on commit 7d6632f

Please sign in to comment.