Skip to content

Commit

Permalink
chore(deps): Bump lints and flutter_lints version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nika Hassani committed Oct 31, 2023
1 parent 503f44e commit d19089d
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of amplify_interface;
part of 'amplify_categories.dart';

class AnalyticsCategory extends AmplifyCategory<AnalyticsPluginInterface> {
@override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of amplify_interface;
part of 'amplify_categories.dart';

class APICategory extends AmplifyCategory<APIPluginInterface> {
@override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of amplify_interface;
part of 'amplify_categories.dart';

/// Interface for DataStore category. This expose all the APIs that
/// are supported by this category's plugins. This class will accept plugins to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of amplify_interface;
part of 'amplify_categories.dart';

/// {@template amplify_core.amplify_notifications_category}
/// Top-Level Category for Notifications.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of amplify_interface;
part of 'amplify_categories.dart';

class PushNotificationsCategory
extends AmplifyCategory<PushNotificationsPluginInterface> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of amplify_interface;
part of 'amplify_categories.dart';

/// {@template amplify_core.amplify_storage_category}
/// The Amplify Storage category provides an interface for interacting with
Expand Down
4 changes: 2 additions & 2 deletions packages/amplify_lints/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ environment:
sdk: ^3.0.0

dependencies:
flutter_lints: ^2.0.0
lints: ^2.1.0
flutter_lints: ^3.0.0
lints: ^3.0.0
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of authenticator.form_field;
part of '../form_field.dart';

/// {@category Prebuilt Widgets}
/// {@template amplify_authenticator.confirm_sign_in_form_field}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of authenticator.form_field;
part of '../form_field.dart';

/// {@category Prebuilt Widgets}
/// {@template amplify_authenticator.mfa_selection_form_field}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

part of authenticator.form_field;
part of '../form_field.dart';

/// {@category Prebuilt Widgets}
/// {@template amplify_authenticator.sign_in_form_field}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// ignore_for_file: use_build_context_synchronously

part of authenticator.form_field;
part of '../form_field.dart';

/// {@category Prebuilt Widgets}
/// {@template amplify_authenticator.instruction_form_field}
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy/goldens/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dev_dependencies:
args: ^2.3.1
file: ">=6.0.0 <8.0.0"
glob: ^2.0.2
lints: ^2.0.0
lints: ^3.0.0
path: any
pubspec_parse: ^1.2.0
smithy_codegen:
Expand Down
2 changes: 1 addition & 1 deletion packages/test/pub_server/lib/src/server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ class PubServer {
Handler get handler => const Pipeline()
.addMiddleware(_loggerMiddleware)
.addMiddleware(corsMiddleware)
.addHandler(_$PubServerRouter(this));
.addHandler(_$PubServerRouter(this).call);
}

/// Allows access from Web UI.
Expand Down

0 comments on commit d19089d

Please sign in to comment.