我想知道如何修改SonarQube中的现有规则。 例如这条规则:
( Remove this commented out code )
/* ..... commented code ..... /*
我想修改此规则,忽略包含@any_thing
的注释代码,如下所示:
//@anything
/* ..... commented code ..... /*
或者像这样:
/* @anything
..... commented code ..... /*
我该如何解决这个问题?
答案 0 :(得分:2)
您无法修改现有规则。解决方法是write a custom rule。
但是,您应该首先认真考虑您想要实现的行为是否真的特定于您自己的环境。如果不是这种情况,您可以加入SonarQube google group建议更改现有规则。