Skip to content

Commit 05b0640

Browse files
committed
removed avoid_unassigned_late_fields
1 parent 015c112 commit 05b0640

File tree

4 files changed

+4
-31
lines changed

4 files changed

+4
-31
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
## 2.1.0
22

33
* Updated documentation of the package
4-
* Upgraded dependencies
5-
* Created custom rule
6-
* `avoid_unassigned_late_fields`: Avoid unassigned late fields in class :warning:
4+
* Upgraded [`custom_lint`][custom_lint] `0.4.0`->`0.5.0`
75

86
## 2.0.1
97

@@ -12,7 +10,7 @@
1210
## 2.0.0
1311

1412
* Added rule [flutter_style_todos](https://dart-lang.github.io/linter/lints/flutter_style_todos.html)
15-
* Created custom rules with the package [custom_lint](https://pub.dev/packages/custom_lint)
13+
* Created custom rules with the package [custom_lint][custom_lint]
1614
* `avoid_as`: Avoid using `as` keyword :warning:
1715
* `avoid_non_null_assertion`: Avoid using `!` operator :warning:
1816

@@ -36,3 +34,5 @@
3634
## 1.0.0
3735

3836
* Initial version.
37+
38+
[custom_lint]: https://pub.dev/packages/custom_lint

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ Those rules were created by us by using the [custom_lint](https://pub.dev/packag
6868
|-------------------------------------------------------------------|----------------------|
6969
| [avoid_non_null_assertion][avoid_non_null_assertion_link] | :warning: |
7070
| [avoid_as][avoid_as_link] | :warning: |
71-
| [avoid_unassigned_late_fields][avoid_unassigned_late_fields_link] | :warning: |
7271

7372
### Dart
7473

example/test.dart

Lines changed: 0 additions & 23 deletions
This file was deleted.

lib/fd_lints.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import 'package:custom_lint_builder/custom_lint_builder.dart';
22
import 'package:fd_lints/src/lints/avoid_as.dart';
33
import 'package:fd_lints/src/lints/avoid_non_null_assertion.dart';
4-
import 'package:fd_lints/src/lints/avoid_unassigned_late_fields.dart';
54

65
/// Entry point for the `_FDLintsPlugin`.
76
///
87
/// Include the rules:
98
/// - [AvoidAs]
109
/// - [AvoidNonNullAssertion]
11-
/// - [AvoidUnassignedLateFields]
1210
PluginBase createPlugin() => _FDLintsPlugin();
1311

1412
class _FDLintsPlugin extends PluginBase {
@@ -17,7 +15,6 @@ class _FDLintsPlugin extends PluginBase {
1715
return [
1816
AvoidAs(),
1917
AvoidNonNullAssertion(),
20-
AvoidUnassignedLateFields(),
2118
];
2219
}
2320
}

0 commit comments

Comments
 (0)