Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将默认规则与 PMD 中的属性一起使用。
现在我使用默认规则
<rule ref="rulesets/basic.xml/UselessOperationOnImmutable"/>
这工作正常,但像 Codesize 中的“NPathComplexity”这样的规则使用属性,因此我们也可以配置默认规则。如何配置这个。有人请帮忙。
<rule ref="rulesets/codesize.xml/CyclomaticComplexity"> <properties> <property name="reportLevel" value="5"/> </properties> </rule>
工作正常。