mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
30 lines
1.2 KiB
XML
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) "{0}" (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>
|