File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ intellijPlatform {
274274 // TODO(team) Ideally all of the following FailureLevels should be enabled:
275275 // https://github.com/flutter/flutter-intellij/issues/8361
276276 VerifyPluginTask .FailureLevel .COMPATIBILITY_WARNINGS ,
277- // VerifyPluginTask.FailureLevel.COMPATIBILITY_PROBLEMS,
277+ VerifyPluginTask .FailureLevel .COMPATIBILITY_PROBLEMS ,
278278// VerifyPluginTask.FailureLevel.DEPRECATED_API_USAGES, // https://github.com/flutter/flutter-intellij/issues/7718
279279// VerifyPluginTask.FailureLevel.SCHEDULED_FOR_REMOVAL_API_USAGES,
280280// `BadgeIcon`:
@@ -289,6 +289,7 @@ intellijPlatform {
289289 )
290290 verificationReportsFormats = VerifyPluginTask .VerificationReportsFormats .ALL
291291 subsystemsToCheck = VerifyPluginTask .Subsystems .ALL
292+ ignoredProblemsFile.set(project.file(" verify-ignore-problems.txt" ))
292293
293294 ides {
294295 recommended()
@@ -416,4 +417,5 @@ tasks.withType<ProcessResources>().configureEach {
416417 // The context here is unambiguously the task itself.
417418 exclude(" jxbrowser/jxbrowser.properties" )
418419 }
419- }
420+ }
421+
Original file line number Diff line number Diff line change 1+ # This is a known false positive. The de.roderick.weberknecht package is provided
2+ # by the Dart plugin at runtime, but the verifier's static analysis of
3+ # class loader visibility is flawed in this case.
4+ # See more context in https://github.com/flutter/flutter-intellij/pull/8590
5+ ::Package 'de.roderick' is not found.*
6+
You can’t perform that action at this time.
0 commit comments