gpt4 book ai didi

intellij-idea - 如何使用 Intellij SonarLint 插件抑制特定方法的警告

转载 作者:行者123 更新时间:2023-12-03 15:18:06 30 4
gpt4 key购买 nike

我想抑制某些方法的 Sonar lint 插件警告,
这个问题不是我想要的Intellij SonarLint 2.3 - ignore rule .

目前我必须用 @SuppressWarnings("all") 注释该方法,它会抑制所有警告。

最佳答案

您可以使用 //NOSONAR@SuppressWarnings()但您需要指定规则。

来自 SonarQube documentation :

The //NOSONAR tag is useful to deactivate all rules at a given line but is not suitable to deactivate all rules (or only a given rule) for all the lines of a method or a class. This is why support for @SuppressWarnings("all") has been added to SonarQube.

SINCE 2.8 of Java Plugin, you can also use @SuppressWarnings annotation with a list of rule keys:

@SuppressWarnings("squid:S2078") or @SuppressWarnings({"squid:S2078", "squid:S2076"}).

关于intellij-idea - 如何使用 Intellij SonarLint 插件抑制特定方法的警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47369526/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com