Remove outdated ignores (#162773)

Powered by the new and amazing `unnecessary_ignore` lint.

We're not enabling this lint by default because being able to
temporarily use ignores that don't ignore anything is a powerful tool to
enable migrations. We should turn this lint on locally periodically,
though, and clean up all outdated ignores.
This commit is contained in:
Michael Goderbauer
2025-02-06 10:40:25 -08:00
committed by GitHub
parent 5944d992ac
commit c783ce2344
60 changed files with 39 additions and 147 deletions

View File

@@ -437,7 +437,6 @@ class ModuleTest {
Future<void> main() async {
await task(
combine(<TaskFunction>[
// ignore: avoid_redundant_argument_values
ModuleTest(gradleVersion: '8.4').call,
ModuleTest(gradleVersion: '8.4-rc-3').call,
]),

View File

@@ -407,10 +407,5 @@ class ModuleTest {
}
Future<void> main() async {
await task(
combine(<TaskFunction>[
// ignore: avoid_redundant_argument_values
ModuleTest(gradleVersion: '8.7').call,
]),
);
await task(combine(<TaskFunction>[ModuleTest(gradleVersion: '8.7').call]));
}