Skip to content

Commit

Permalink
Improve documentation on the -ip CLI switch (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
novotnyr authored Jul 11, 2024
1 parent 7fa410e commit a41aaa0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,15 @@ Here is the full syntax of the command:

* `-ignored-problems (-ip)`

A file that contains a list of problems that will be ignored in report.
The file must contain lines in form `<plugin_xml_id>:<plugin_version>:<problem_description_regexp_pattern>`
A file that contains a list of problems that will be ignored in the report.
The file must contain lines in the format `<plugin_xml_id>:<plugin_version>:<problem_description_regexp_pattern>`.
Both `plugin_xml_id` and `plugin_version` are optional.

Examples:

* `DevKit:242.19890.14:access to unresolved class org.foo.Foo.*` — ignore the plugin problem that occurs in the plugin with the identifier `DevKit` and version `242.19890.14`.
* `org.jetbrains.kotlin::access to unresolved class org.jetbrains.kotlin.compiler.*` — ignore the plugin problem for all versions of the Kotlin plugin.
* `access to unresolved class org.jetbrains.kotlin.compiler.*` — ignore the plugin problem for all plugins.

* `-keep-only-problems (-kop)`

Expand Down

0 comments on commit a41aaa0

Please sign in to comment.