Skip to content

Commit 6377611

Browse files
committed
fix lint issues
1 parent 554f24d commit 6377611

File tree

24 files changed

+49
-82
lines changed

24 files changed

+49
-82
lines changed

builders/json_serializable_fic/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.1
2+
3+
- **CHORE**: fix lint issues
4+
15
## 1.1.0
26

37
- Update build_runner to ^2.4.15

builders/json_serializable_fic/lib/builder.dart

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,8 @@
1-
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2-
// for details. All rights reserved. Use of this source code is governed by a
3-
// BSD-style license that can be found in the LICENSE file.
4-
5-
/// Configuration for using `package:build`-compatible build systems.
6-
///
7-
/// See:
8-
/// * [build_runner](https://pub.dev/packages/build_runner)
9-
///
10-
/// This library is **not** intended to be imported by typical end-users unless
11-
/// you are creating a custom compilation pipeline. See documentation for
12-
/// details, and `build.yaml` for how these builders are configured by default.
13-
141
import 'package:build/build.dart';
152
import 'package:json_annotation/json_annotation.dart';
3+
import 'package:json_serializable/json_serializable.dart';
164
import 'package:json_serializable_fic_typehelpers/json_serializable_fic_typehelpers.dart';
17-
185
import 'package:source_gen/source_gen.dart';
19-
import 'package:json_serializable/json_serializable.dart';
206

217
import 'type_helpers.dart';
228

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
/// this library file exports custom type helpers used for json_serializable code generation for built_value and kt.dart collections.
2-
/// normal users of this library should not need this, this is for advanced users who want to add their own, additional TypeHelpers
3-
/// and write their own builder
4-
51
export 'package:json_serializable_fic_typehelpers/json_serializable_fic_typehelpers.dart'
62
show FICIListTypeHelper, FICIMapTypeHelper, FICISetTypeHelper;

builders/json_serializable_fic/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: json_serializable_fic
22
description: Adding support for fast immutable collections for json_serializable
3-
version: 1.1.0
3+
version: 1.1.1
44
homepage: https://github.com/knaeckeKami/immutable_json_list_serializer
55

66
environment:

builders/json_serializable_immutable_collections/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.1
2+
3+
- **CHORE**: fix lint issues
4+
15
## 1.1.0
26

37
- Update build_runner to ^2.4.15

builders/json_serializable_immutable_collections/lib/builder.dart

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2-
// for details. All rights reserved. Use of this source code is governed by a
3-
// BSD-style license that can be found in the LICENSE file.
4-
5-
/// Configuration for using `package:build`-compatible build systems.
6-
///
7-
/// See:
8-
/// * [build_runner](https://pub.dev/packages/build_runner)
9-
///
10-
/// This library is **not** intended to be imported by typical end-users unless
11-
/// you are creating a custom compilation pipeline. See documentation for
12-
/// details, and `build.yaml` for how these builders are configured by default.
13-
library immutable_json_list_builder;
14-
151
import 'package:build/build.dart';
162
import 'package:json_annotation/json_annotation.dart';
173
import 'package:json_serializable/json_serializable.dart';

builders/json_serializable_immutable_collections/lib/type_helpers.dart

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/// this library file exports custom type helpers used for json_serializable code generation for built_value and kt.dart collections.
2-
/// normal users of this library should not need this, this is for advanced users who want to add their own, additional TypeHelpers
3-
/// and write their own builder
4-
51
export 'package:json_serializable_built_typehelpers/json_serializable_built_typehelpers.dart'
62
show BuiltSetTypeHelper, BuiltListTypeHelper, BuiltMapTypeHelper;
73
export 'package:json_serializable_kt_typehelpers/json_serializable_kt_typehelpers.dart'

builders/json_serializable_immutable_collections/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: json_serializable_immutable_collections
22
description: Adding support for immutable collections for json_serializable
3-
version: 1.1.0
3+
version: 1.1.1
44
homepage: https://github.com/knaeckeKami/immutable_json_list_serializer
55

66
environment:

builders/json_serializable_mobx/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.1
2+
3+
- **CHORE**: fix lint issues
4+
15
## 1.1.0
26

37
- Update mobx to ^2.5.0

builders/json_serializable_mobx/lib/builder.dart

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,8 @@
1-
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2-
// for details. All rights reserved. Use of this source code is governed by a
3-
// BSD-style license that can be found in the LICENSE file.
4-
5-
/// Configuration for using `package:build`-compatible build systems.
6-
///
7-
/// See:
8-
/// * [build_runner](https://pub.dev/packages/build_runner)
9-
///
10-
/// This library is **not** intended to be imported by typical end-users unless
11-
/// you are creating a custom compilation pipeline. See documentation for
12-
/// details, and `build.yaml` for how these builders are configured by default.
13-
library immutable_json_list_builder;
14-
151
import 'package:build/build.dart';
162
import 'package:json_annotation/json_annotation.dart';
3+
import 'package:json_serializable/json_serializable.dart';
174
import 'package:json_serializable_mobx_typehelpers/json_serializable_mobx_typehelpers.dart';
18-
195
import 'package:source_gen/source_gen.dart';
20-
import 'package:json_serializable/json_serializable.dart';
216

227
import 'type_helpers.dart';
238

0 commit comments

Comments
 (0)