Skip to content

Commit 9ccbbb2

Browse files
authored
Update and fix lints (#1442)
1 parent 27df699 commit 9ccbbb2

File tree

9 files changed

+3
-18
lines changed

9 files changed

+3
-18
lines changed

_test_yaml/pubspec.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ dev_dependencies:
1212
build_runner: ^2.2.1
1313
build_verify: ^3.0.0
1414
checked_yaml: ^2.0.4-wip
15-
dart_flutter_team_lints: ^3.0.0
1615
json_annotation: ^4.9.0
1716
json_serializable: ^6.8.0
1817
path: ^1.8.2

checked_yaml/pubspec.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ dependencies:
2525
dev_dependencies:
2626
build_runner: ^2.0.6
2727
build_verify: ^3.0.0
28-
dart_flutter_team_lints: ^3.0.0
2928
json_serializable: ^6.0.0
3029
path: ^1.8.0
3130
test: ^1.17.10

example/pubspec.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ dev_dependencies:
2020
# Used by tests. Not required to use `json_serializable`.
2121
build_verify: ^3.0.0
2222

23-
# Not required to use `json_serializable`.
24-
dart_flutter_team_lints: ^3.0.0
25-
2623
# REQUIRED!
2724
json_serializable: ^6.8.0
2825

json_annotation/lib/src/json_converter.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/// [T] is the data type you'd like to convert to and from.
88
///
99
/// [S] is the type of the value stored in JSON. It must be a valid JSON type
10-
/// such as [String], [int], or [Map<String, dynamic>].
10+
/// such as [String], [int], or [Map]`<String, dynamic>`.
1111
///
1212
///
1313
/// [JsonConverter]s can be placed either on the class:

json_annotation/lib/src/json_serializable.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ enum FieldRename {
3939
)
4040
@Target({TargetKind.classType})
4141
class JsonSerializable {
42-
/// If `true`, [Map] types are *not* assumed to be [Map<String, dynamic>]
42+
/// If `true`, [Map] types are *not* assumed to be [Map]`<String, dynamic>`
4343
/// – which is the default type of [Map] instances return by JSON decode in
4444
/// `dart:convert`.
4545
///

json_annotation/pubspec.yaml

-6
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,3 @@ resolution: workspace
1717

1818
dependencies:
1919
meta: ^1.4.0
20-
21-
dev_dependencies:
22-
dart_flutter_team_lints: ^3.0.0
23-
# When changing JsonSerializable class.
24-
# build_runner: ^2.0.0
25-
# json_serializable: any

json_serializable/pubspec.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ dev_dependencies:
3636
path: ../shared_test
3737
build_runner: ^2.4.6
3838
build_verify: ^3.0.0
39-
dart_flutter_team_lints: ^3.0.0
4039
dart_style: ^2.3.2
4140
logging: ^1.0.0
4241
source_gen_test: ^1.0.6

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
publish_to: none
66

77
dev_dependencies:
8-
dart_flutter_team_lints: ^3.1.0
8+
dart_flutter_team_lints: ^3.2.0
99
workspace:
1010
- _test_yaml
1111
- checked_yaml

shared_test/pubspec.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,3 @@ resolution: workspace
88
dependencies:
99
stack_trace: ^1.10.0
1010
test: ^1.6.0
11-
12-
dev_dependencies:
13-
dart_flutter_team_lints: ^3.0.0

0 commit comments

Comments
 (0)