Вопрос

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