9

Maybe it's just me, but I can't find information which is the highest priority in PMD: 1 or 5?

Because of http://pmd.sourceforge.net/running.html and the mention of the command line parameter -minimumpriority I think 5 is the highest and 1 is the lowest value. Am I right?

Machavity
  • 30,841
  • 27
  • 92
  • 100
cringe
  • 13,401
  • 15
  • 69
  • 102

1 Answers1

12

Actually 1 is highest priority and 5 is lowest priority.
You can check the exported rule set, where

<rule ref="rulesets/imports.xml/ImportFromSamePackage"/> <!-- Default -->
<rule ref="rulesets/imports.xml/TooManyStaticImports">
   <priority>5</priority> <!-- Change to priority [information] -->
</rule>

The all default rule set configuration is in pmd-x.x.x.jar\rulesets\*.xml

Here you can see the rules priority and how they should be used.

Nahuel Barrios
  • 1,870
  • 19
  • 22
lschin
  • 6,745
  • 2
  • 38
  • 52