Which is the highest priority in PMD?

2020-08-23 01:30发布

问题:

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?

回答1:

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.



标签: pmd