1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00
cdt/codan/org.eclipse.cdt.codan.examples/plugin.xml
2010-05-07 02:58:31 +00:00

30 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.cdt.codan.core.checkers"
id="org.eclipse.cdt.codan.core.internal.checkers">
<checker
class="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionIIndexChecker"
id="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionChecker"
name="NamingConventionFunctionChecker">
<problem
category="org.eclipse.cdt.codan.core.categories.CodeStyle"
defaultEnabled="false"
defaultSeverity="Info"
id="org.eclipse.cdt.codan.examples.checkers.NamingConventionFunctionProblem"
messagePattern="Bad function name (example) &quot;{0}&quot; (pattern /{1}/)"
name="Name convention for function (example)"
markerType="org.eclipse.cdt.codan.core.codanProblem">
</problem>
</checker>
</extension>
<extension
point="org.eclipse.cdt.codan.ui.codanProblemDetails">
<problemDetails
class="org.eclipse.cdt.codan.examples.uicontrib.FlexlintHelpLink"
>
</problemDetails>
</extension>
</plugin>