Skip to content
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
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ intellijPlatform {
// TODO(team) Ideally all of the following FailureLevels should be enabled:
// https://github.com/flutter/flutter-intellij/issues/8361
VerifyPluginTask.FailureLevel.COMPATIBILITY_WARNINGS,
// VerifyPluginTask.FailureLevel.COMPATIBILITY_PROBLEMS,
VerifyPluginTask.FailureLevel.COMPATIBILITY_PROBLEMS,
// VerifyPluginTask.FailureLevel.DEPRECATED_API_USAGES, // https://github.com/flutter/flutter-intellij/issues/7718
// VerifyPluginTask.FailureLevel.SCHEDULED_FOR_REMOVAL_API_USAGES,
// `BadgeIcon`:
Expand All @@ -289,6 +289,7 @@ intellijPlatform {
)
verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL
subsystemsToCheck = VerifyPluginTask.Subsystems.ALL
ignoredProblemsFile.set(project.file("verify-ignore-problems.txt"))

ides {
recommended()
Expand Down Expand Up @@ -416,4 +417,5 @@ tasks.withType<ProcessResources>().configureEach {
// The context here is unambiguously the task itself.
exclude("jxbrowser/jxbrowser.properties")
}
}
}

Empty file.
6 changes: 6 additions & 0 deletions verify-ignore-problems.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# This is a known false positive. The de.roderick.weberknecht package is provided
# by the Dart plugin at runtime, but the verifier's static analysis of
# class loader visibility is flawed in this case.
# See more context in https://github.com/flutter/flutter-intellij/pull/8590
::Package 'de.roderick' is not found.*