Unverified Commit 60a87d07 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Sync Lints (#127976)

Syncs our lints with https://github.com/dart-lang/linter/blob/master/example/all.yaml:
* removed the deprecated `iterable_contains_unrelated_type` and `list_remove_unrelated_type` lints (their replacement `collection_methods_unrelated_type` was already enabled for us)
* enabled the new `no_self_assignments` and fixed one issue triggered by the lint.
parent 4464d09d
...@@ -110,7 +110,6 @@ linter: ...@@ -110,7 +110,6 @@ linter:
- implicit_call_tearoffs - implicit_call_tearoffs
- implicit_reopen - implicit_reopen
- invalid_case_patterns - invalid_case_patterns
- iterable_contains_unrelated_type
# - join_return_with_assignment # not required by flutter style # - join_return_with_assignment # not required by flutter style
- leading_newlines_in_multiline_strings - leading_newlines_in_multiline_strings
- library_annotations - library_annotations
...@@ -118,7 +117,6 @@ linter: ...@@ -118,7 +117,6 @@ linter:
- library_prefixes - library_prefixes
- library_private_types_in_public_api - library_private_types_in_public_api
# - lines_longer_than_80_chars # not required by flutter style # - lines_longer_than_80_chars # not required by flutter style
- list_remove_unrelated_type
# - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/linter/issues/453 # - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/linter/issues/453
# - matching_super_parameters # blocked on https://github.com/dart-lang/language/issues/2509 # - matching_super_parameters # blocked on https://github.com/dart-lang/language/issues/2509
- missing_whitespace_between_adjacent_strings - missing_whitespace_between_adjacent_strings
...@@ -130,6 +128,7 @@ linter: ...@@ -130,6 +128,7 @@ linter:
- no_literal_bool_comparisons - no_literal_bool_comparisons
- no_logic_in_create_state - no_logic_in_create_state
# - no_runtimeType_toString # ok in tests; we enable this only in packages/ # - no_runtimeType_toString # ok in tests; we enable this only in packages/
- no_self_assignments
- non_constant_identifier_names - non_constant_identifier_names
- noop_primitive_operations - noop_primitive_operations
- null_check_on_nullable_type_parameter - null_check_on_nullable_type_parameter
......
...@@ -2106,7 +2106,7 @@ abstract class RenderBox extends RenderObject { ...@@ -2106,7 +2106,7 @@ abstract class RenderBox extends RenderObject {
@override @override
void debugResetSize() { void debugResetSize() {
// updates the value of size._canBeUsedByParent if necessary // updates the value of size._canBeUsedByParent if necessary
size = size; size = size; // ignore: no_self_assignments
} }
Map<TextBaseline, double?>? _cachedBaselines; Map<TextBaseline, double?>? _cachedBaselines;
......
...@@ -200,7 +200,8 @@ Future<void> main() async { ...@@ -200,7 +200,8 @@ Future<void> main() async {
final RenderImage renderImage = RenderImage(image: image.clone()); final RenderImage renderImage = RenderImage(image: image.clone());
expect(image.debugGetOpenHandleStackTraces()!.length, 2); expect(image.debugGetOpenHandleStackTraces()!.length, 2);
renderImage.image = renderImage.image; // Testing short-circuit logic of setter.
renderImage.image = renderImage.image; // ignore: no_self_assignments
expect(image.debugGetOpenHandleStackTraces()!.length, 2); expect(image.debugGetOpenHandleStackTraces()!.length, 2);
renderImage.image = null; renderImage.image = null;
......
...@@ -161,10 +161,8 @@ class FakeVM extends Fake implements vm.VmService { ...@@ -161,10 +161,8 @@ class FakeVM extends Fake implements vm.VmService {
return vm.Timestamp(timestamp: lastTimeStamp); return vm.Timestamp(timestamp: lastTimeStamp);
} }
List<String> recordedStreams = <String>[];
@override @override
Future<vm.Success> setVMTimelineFlags(List<String> recordedStreams) async { Future<vm.Success> setVMTimelineFlags(List<String> recordedStreams) async {
recordedStreams = recordedStreams;
return vm.Success(); return vm.Success();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment