mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
30 lines
874 B
XML
30 lines
874 B
XML
<idea-plugin version="2">
|
|
<id>com.intellij.tutorials.inspection</id>
|
|
<name>Inspection Demo</name>
|
|
<version>1.0</version>
|
|
<vendor email="support@jrtbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
|
|
|
<description>Basic example of working with code inspections</description>
|
|
|
|
<change-notes>Initial commit</change-notes>
|
|
|
|
<idea-version since-build="131"/>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<inspectionToolProvider implementation="com.intellij.tutorials.inspection.DemoInspectionToolProvider"/>
|
|
|
|
</extensions>
|
|
|
|
<application-components>
|
|
<!-- Add your application components here -->
|
|
</application-components>
|
|
|
|
<project-components>
|
|
<!-- Add your project components here -->
|
|
</project-components>
|
|
|
|
<actions>
|
|
<!-- Add your actions here -->
|
|
</actions>
|
|
|
|
</idea-plugin> |