Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Remove outdated ignores #108924

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions dev/integration_tests/deferred_components_test/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ class MyHomePageState extends State<MyHomePage> {
// the placeholder text.
Future<void>.delayed(const Duration(milliseconds: 750), () {
setState(() {
// See https://github.com/dart-lang/sdk/issues/46894
// ignore: prefer_const_constructors
postLoadDisplayWidget = component1.LogoScreen();
});
});
Expand Down
3 changes: 1 addition & 2 deletions dev/integration_tests/web/lib/stack_trace.dart
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,8 @@ class StackFrameEquality implements Equality<StackFrame> {
e1.method == e2.method;
}

// TODO(dnfield): This ignore shouldn't be necessary, see https://github.com/dart-lang/sdk/issues/46477
@override
int hash(StackFrame e) { // ignore: avoid_renaming_method_parameters
int hash(StackFrame e) {
return Object.hash(e.number, e.packageScheme, e.package, e.packagePath, e.line, e.column, e.className, e.method);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,14 +234,11 @@ void main() {

KeyboardEvent dispatchKeyboardEvent(
EventTarget target, String type, Map<String, dynamic> args) {
// ignore: implicit_dynamic_function
final Object jsKeyboardEvent = js_util.getProperty(window, 'KeyboardEvent') as Object;
final List<dynamic> eventArgs = <dynamic>[
type,
args,
];

// ignore: implicit_dynamic_function
final KeyboardEvent event = js_util.callConstructor(
jsKeyboardEvent, js_util.jsify(eventArgs) as List<dynamic>)
as KeyboardEvent;
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_test/lib/src/binding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
}

@override
// ignore: MUST_CALL_SUPER
// ignore: must_call_super
void initLicenses() {
// Do not include any licenses, because we're a test, and the LICENSE file
// doesn't get generated for tests.
Expand Down
1 change: 0 additions & 1 deletion packages/flutter_test/lib/src/event_simulation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ String? _keyLabel(LogicalKeyboardKey key) {
return null;
}

// ignore: avoid_classes_with_only_static_members
/// A class that serves as a namespace for a bunch of keyboard-key generation
/// utilities.
class KeyEventSimulator {
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_tools/lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class FlutterVersion {

String? _repositoryUrl;
String? get repositoryUrl {
final String _ = channel; // ignore: no_leading_underscores_for_local_identifiers
final String _ = channel;
return _repositoryUrl;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ void main() {
'-w', '1',
'testhostname',
],
postBuildCommand: null, // ignore: avoid_redundant_argument_values
postBuildCommand: null,
installCommand: const <String>[
'scp',
'-r',
Expand Down Expand Up @@ -637,7 +637,7 @@ void main() {
'-w', '1',
'192.168.178.1',
],
postBuildCommand: null, // ignore: avoid_redundant_argument_values
postBuildCommand: null,
installCommand: const <String>[
'scp',
'-r',
Expand Down Expand Up @@ -727,7 +727,7 @@ void main() {
'-w', '1',
'::1',
],
postBuildCommand: null, // ignore: avoid_redundant_argument_values
postBuildCommand: null,
installCommand: const <String>[
'scp',
'-r',
Expand Down Expand Up @@ -821,7 +821,7 @@ void main() {
'-w', '1',
'testhostname',
],
postBuildCommand: null, // ignore: avoid_redundant_argument_values
postBuildCommand: null,
installCommand: <String>[
'scp',
'-r',
Expand Down Expand Up @@ -901,7 +901,7 @@ void main() {
'-w', '1',
'testhostname',
],
postBuildCommand: null, // ignore: avoid_redundant_argument_values
postBuildCommand: null,
installCommand: const <String>[
'scp',
'-r',
Expand Down Expand Up @@ -1226,7 +1226,7 @@ void main() {
'testhostname',
],
pingSuccessRegex: RegExp(r'[<=]\d+ms'),
postBuildCommand: null, // ignore: avoid_redundant_argument_values
postBuildCommand: null,
installCommand: const <String>[
'scp',
'-r',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ void main() {

// Unfortunately Device, despite not being immutable, has an `operator ==`.
// Until we fix that, we have to also ignore related lints here.
// ignore: avoid_implementing_value_types
class ThrowingScreenshotDevice extends ScreenshotDevice {
@override
Future<LaunchResult> startApp(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void main() {
testWithoutContext('AndroidWorkflow handles a null AndroidSDK', () {
final AndroidWorkflow androidWorkflow = AndroidWorkflow(
featureFlags: TestFeatureFlags(),
androidSdk: null, // ignore: avoid_redundant_argument_values
androidSdk: null,
operatingSystemUtils: FakeOperatingSystemUtils(),
);

Expand Down Expand Up @@ -391,7 +391,7 @@ Review licenses that have not been accepted (y/N)?
);

final AndroidValidator androidValidator = AndroidValidator(
androidStudio: null, // ignore: avoid_redundant_argument_values
androidStudio: null,
androidSdk: sdk,
fileSystem: fileSystem,
logger: logger,
Expand Down Expand Up @@ -439,7 +439,7 @@ Review licenses that have not been accepted (y/N)?
..directory = fileSystem.directory('/foo/bar');

final AndroidValidator androidValidator = AndroidValidator(
androidStudio: null, // ignore: avoid_redundant_argument_values
androidStudio: null,
androidSdk: sdk,
fileSystem: fileSystem,
logger: logger,
Expand Down Expand Up @@ -488,7 +488,7 @@ Review licenses that have not been accepted (y/N)?

final ValidationResult validationResult = await AndroidValidator(
androidSdk: sdk,
androidStudio: null, // ignore: avoid_redundant_argument_values
androidStudio: null,
fileSystem: fileSystem,
logger: logger,
platform: FakePlatform()..environment = <String, String>{'HOME': '/home/me', 'JAVA_HOME': 'home/java'},
Expand All @@ -510,8 +510,8 @@ Review licenses that have not been accepted (y/N)?

testWithoutContext('Mentions `flutter config --android-sdk if user has no AndroidSdk`', () async {
final ValidationResult validationResult = await AndroidValidator(
androidSdk: null, // ignore: avoid_redundant_argument_values
androidStudio: null, // ignore: avoid_redundant_argument_values
androidSdk: null,
androidStudio: null,
fileSystem: fileSystem,
logger: logger,
platform: FakePlatform()..environment = <String, String>{'HOME': '/home/me', 'JAVA_HOME': 'home/java'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,6 @@ void main() {
outputStdout().join('\n'),
'$message' // initial message
'${" " * 4}${" " * 8}' // margin (4) and space for the time at the end (8)
// ignore: missing_whitespace_between_adjacent_strings
'$a' // first tick
'$blankLine' // clearing the line
'Rude Interrupting Cow\n' // message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:io' as io; // ignore: dart_io_import
import 'dart:io' as io;
import 'package:flutter_tools/src/base/io.dart';
import 'package:flutter_tools/src/device_port_forwarder.dart';
import 'package:test/fake.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

// @dart = 2.8

// ignore_for_file: avoid_redundant_argument_values

import 'dart:io' hide Directory, File;

import 'package:flutter_tools/src/artifacts.dart';
Expand Down