File tree Expand file tree Collapse file tree 4 files changed +4
-31
lines changed
Expand file tree Collapse file tree 4 files changed +4
-31
lines changed Original file line number Diff line number Diff line change 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
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
3634## 1.0.0
3735
3836* Initial version.
37+
38+ [ custom_lint ] : https://pub.dev/packages/custom_lint
Original file line number Diff line number Diff 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import 'package:custom_lint_builder/custom_lint_builder.dart' ;
22import 'package:fd_lints/src/lints/avoid_as.dart' ;
33import '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]
1210PluginBase createPlugin () => _FDLintsPlugin ();
1311
1412class _FDLintsPlugin extends PluginBase {
@@ -17,7 +15,6 @@ class _FDLintsPlugin extends PluginBase {
1715 return [
1816 AvoidAs (),
1917 AvoidNonNullAssertion (),
20- AvoidUnassignedLateFields (),
2118 ];
2219 }
2320}
You can’t perform that action at this time.
0 commit comments