-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugin.xml
More file actions
55 lines (45 loc) · 2.26 KB
/
Copy pathplugin.xml
File metadata and controls
55 lines (45 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<idea-plugin>
<id>com.github.johnthagen.cppcheck</id>
<name>cppcheck</name>
<version>1.6.7</version>
<vendor email="johnthagen@users.noreply.github.com" url="https://github.com/johnthagen">johnthagen</vendor>
<description><![CDATA[
A plugin for JetBrains IDEs to provide inspections for C/C++ files utilizing the static analyzer Cppcheck.<br/><br/>
<b>Features:</b><br/>
<ul>
<li>Runs Cppcheck on the fly while you write code</li>
<li>Highlights lines and displays Cppcheck error messages</li>
<li>Supports passing options to Cppcheck</li>
</ul>
<br/>
<b>Usage:</b><br/>
Please refer to <a href="https://github.com/johnthagen/clion-cppcheck#installation">Installation</a>.<br/>
<b>Known issues:</b><br/>
Please refer to <a href="https://github.com/johnthagen/clion-cppcheck#known-issueslimitations">Known Issues</a>.<br/>
]]></description>
<change-notes><![CDATA[
- Mitigated build warning about `RandomStringUtils.randomAlphanumeric(int)` being deprecated.
]]>
</change-notes>
<!-- please see https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html for description -->
<idea-version since-build="201"/>
<!-- please see https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html
on how to target different products -->
<!-- enable plugin in all products -->
<depends>com.intellij.modules.lang</depends>
<extensions defaultExtensionNs="com.intellij">
<localInspection implementationClass="com.github.johnthagen.cppcheck.CppcheckInspection"
displayName="Cppcheck Inspections"
groupName="cppcheck"
id="CppcheckInspection"
level="WARNING"
enabledByDefault="true"/>
<applicationConfigurable instance="com.github.johnthagen.cppcheck.Configuration"
displayName="Cppcheck Configuration"/>
</extensions>
<actions>
<!-- Add your actions here -->
<action id="com.github.johnthagen.cppcheck.ShowOutputAction" class="com.github.johnthagen.cppcheck.ShowOutputAction"
text="Show Cppcheck XML Output" description="Show the raw Cppcheck --xml output of the latest analysis"/>
</actions>
</idea-plugin>