Files
kotlin-fork/idea/testData/inspections/incompatibleAPI/inspectionData/settings.xml
T
Nikolay Krasko 3ef67e1d9d Inspection for highlighting problem API usage
It's planned to use this inspection for show patchset branches problems
during development process.
2018-05-17 12:27:29 +03:00

12 lines
767 B
XML
Vendored

<inspection_tool class="IncompatibleAPI" enabled="true" level="WARNING" enabled_by_default="true">
<option name="problems">
<list>
<Problem reference="lib.LibClass" reason="class example" />
<Problem reference="lib.LibMethods#staticMethod" reason="static method example" />
<Problem reference="lib.LibMethods#overload1(int)" reason="concrete overload example" />
<Problem reference="lib.LibMethods#overload2" reason="overload with no params example" />
<Problem reference="lib.LibSuper#test" reason="signature changed example" />
<Problem reference="lib.LibConstructor#LibConstructor(java.lang.Object)" reason="constructor example" />
</list>
</option>
</inspection_tool>