문제

PMD allows suppressing violations with the violationSuppressRegex property. See PMD documentation Violation Suppress Regex.

For example for the LooseCoupling Rule.

Is there any way to use this functionality in Sonar?

Example

Suppress Loose Coupling violation for LinkedHashSet in PMD:

<rule ref="rulesets/coupling.xml/LooseCoupoing">
  <property name="violationSuppressRegex" value=".*'LinkedHashSet'.*"/>
</rule>

Where the violation message is something like:

You should not use 'LinkedHashSet' but an interface.
도움이 되었습니까?

해결책

violationSuppressRegex is a new property in PMD 5.0. And Sonar uses PMD 4.3.

Looks like I'll have to wait until Sonar upgrades PMD :-(

다른 팁

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top