diff --git a/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings.dart b/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings.dart index 664e74abd0..8e1bc78ec7 100644 --- a/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings.dart +++ b/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings.dart @@ -4,7 +4,6 @@ import 'dart:async'; -// ignore: unused_import import 'package:flutter/foundation.dart'; import 'package:flutter/widgets.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; @@ -67,7 +66,6 @@ import 'stock_strings_es.dart'; abstract class StockStrings { StockStrings(String locale) : assert(locale != null), localeName = intl.Intl.canonicalizedLocale(locale.toString()); - // ignore: unused_field final String localeName; static StockStrings of(BuildContext context) { diff --git a/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_en.dart b/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_en.dart index a8a4527ed0..34dcab13d4 100644 --- a/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_en.dart +++ b/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_en.dart @@ -2,12 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// ignore: unused_import -import 'package:intl/intl.dart' as intl; import 'stock_strings.dart'; -// ignore_for_file: unnecessary_brace_in_string_interps - /// The translations for English (`en`). class StockStringsEn extends StockStrings { StockStringsEn([String locale = 'en']) : super(locale); diff --git a/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_es.dart b/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_es.dart index 8a82e7ea85..eb23790316 100644 --- a/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_es.dart +++ b/dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_es.dart @@ -2,12 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// ignore: unused_import -import 'package:intl/intl.dart' as intl; import 'stock_strings.dart'; -// ignore_for_file: unnecessary_brace_in_string_interps - /// The translations for Spanish Castilian (`es`). class StockStringsEs extends StockStrings { StockStringsEs([String locale = 'es']) : super(locale); diff --git a/packages/flutter_tools/lib/src/test/test_wrapper.dart b/packages/flutter_tools/lib/src/test/test_wrapper.dart index 5dcf9a485c..3d07d78562 100644 --- a/packages/flutter_tools/lib/src/test/test_wrapper.dart +++ b/packages/flutter_tools/lib/src/test/test_wrapper.dart @@ -11,7 +11,7 @@ import 'package:test_core/src/platform.dart' as hack show registerPlatformPlugin import 'package:test_core/src/platform.dart'; // ignore: implementation_imports export 'package:test_api/backend.dart' show Runtime; // ignore: deprecated_member_use -export 'package:test_core/src/platform.dart' show PlatformPlugin; // ignore: implementation_imports +export 'package:test_core/src/platform.dart' show PlatformPlugin; abstract class TestWrapper { const factory TestWrapper() = _DefaultTestWrapper; diff --git a/packages/integration_test/example/lib/main.dart b/packages/integration_test/example/lib/main.dart index 4bb93baf5c..a0950a1beb 100644 --- a/packages/integration_test/example/lib/main.dart +++ b/packages/integration_test/example/lib/main.dart @@ -4,6 +4,4 @@ import 'my_app.dart' if (dart.library.html) 'my_web_app.dart'; -// ignore_for_file: public_member_api_docs - void main() => startApp();