如何在SonarQube中修改现有规则?

时间:2016-07-19 09:24:02

标签: php sonarqube sonar-runner sonarqube-4.5

我想知道如何修改SonarQube中的现有规则。 例如这条规则:

( Remove this commented out code )
/* ..... commented code ..... /*

我想修改此规则,忽略包含@any_thing的注释代码,如下所示:

//@anything
/* ..... commented code ..... /* 

或者像这样:

/* @anything 
 ..... commented code ..... /*

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

您无法修改现有规则。解决方法是write a custom rule

但是,您应该首先认真考虑您想要实现的行为是否真的特定于您自己的环境。如果不是这种情况,您可以加入SonarQube google group建议更改现有规则。