Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f9a68351b5898d626ac128dd19605dad53246429 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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)">
      </problem>
      </checker>
   </extension>
</plugin>

Back to the top