Skip to content

Commit

Permalink
sort pub dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rrousselGit committed Oct 21, 2020
1 parent c86cc66 commit 5df5ccb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
5 changes: 5 additions & 0 deletions all_lint_rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ linter:
- avoid_shadowing_type_parameters
- avoid_single_cascade_in_expression_statements
- avoid_slow_async_io
- avoid_type_to_string
- avoid_types_as_parameter_names
- avoid_types_on_closure_parameters
- avoid_unnecessary_containers
Expand All @@ -49,6 +50,7 @@ linter:
- camel_case_types
- cancel_subscriptions
- cascade_invocations
- cast_nullable_to_non_nullable
- close_sinks
- comment_references
- constant_identifier_names
Expand Down Expand Up @@ -81,6 +83,7 @@ linter:
- no_logic_in_create_state
- no_runtimeType_toString
- non_constant_identifier_names
- null_check_on_nullable_type_parameter
- null_closures
- omit_local_variable_types
- one_member_abstracts
Expand Down Expand Up @@ -139,6 +142,7 @@ linter:
- sort_unnamed_constructors_first
- test_types_in_equals
- throw_in_finally
- tighten_type_of_initializing_formals
- type_annotate_public_apis
- type_init_formals
- unawaited_futures
Expand All @@ -150,6 +154,7 @@ linter:
- unnecessary_lambdas
- unnecessary_new
- unnecessary_null_aware_assignments
- unnecessary_null_checks
- unnecessary_null_in_if_null_operators
- unnecessary_nullable_for_final_variable_declarations
- unnecessary_overrides
Expand Down
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,3 @@ linter:

public_member_api_docs: false
prefer_asserts_with_message: false

8 changes: 4 additions & 4 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.0"
version: "0.3.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand All @@ -87,7 +87,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0-nullsafety.3"
version: "1.3.0-nullsafety.4"
path:
dependency: transitive
description:
Expand All @@ -113,7 +113,7 @@ packages:
name: stack_trace
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.0-nullsafety.2"
version: "1.10.0-nullsafety.4"
stream_channel:
dependency: transitive
description:
Expand Down Expand Up @@ -157,5 +157,5 @@ packages:
source: hosted
version: "2.1.0-nullsafety.3"
sdks:
dart: ">=2.10.0-110 <=2.11.0-185.0.dev"
dart: ">=2.10.0-110 <=2.11.0-238.0.dev"
flutter: ">=1.21.0-9.0.pre <2.0.0"
9 changes: 3 additions & 6 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,14 @@ environment:
sdk: ">=2.1.0 <3.0.0"

dependencies:
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.3
flutter:
sdk: flutter
flutter_portal:
path: ../


# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.3

dev_dependencies:
flutter_test:
sdk: flutter
Expand All @@ -36,7 +34,6 @@ dev_dependencies:

# The following section is specific to Flutter.
flutter:

# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
Expand Down
6 changes: 3 additions & 3 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0-nullsafety.3"
version: "1.3.0-nullsafety.4"
mockito:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -274,7 +274,7 @@ packages:
name: stack_trace
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.0-nullsafety.1"
version: "1.10.0-nullsafety.4"
stream_channel:
dependency: transitive
description:
Expand Down Expand Up @@ -332,5 +332,5 @@ packages:
source: hosted
version: "2.2.1"
sdks:
dart: ">=2.10.0-110 <=2.11.0-176.0.dev"
dart: ">=2.10.0-110 <=2.11.0-238.0.dev"
flutter: ">=1.21.0-9.0.pre <2.0.0"

0 comments on commit 5df5ccb

Please sign in to comment.