我正在使用SonarLint来获得更好的代码。这是使用默认设置。我有一个包含以下条目的xml文件。
<profile>
<name>Sonar Way with Custom rules</name>
<language>java</language>
<rules>
<rule>
<repositoryKey>common-java</repositoryKey>
<key>DuplicatedBlocks</key>
<priority>MINOR</priority>
</rule>
<rule>
<repositoryKey>common-java</repositoryKey>
<key>InsufficientBranchCoverage</key>
<priority>MAJOR</priority>
<parameters>
<parameter>
<key>minimumBranchCoverageRatio</key>
<value>65.0</value>
</parameter>
</parameters>
</rule>
<profile>
我的问题是如何使用此xml作为SonarLint的自定义设置。 感谢
答案 0 :(得分:0)
正确的做法是在SonarQube服务器中定义质量配置文件,其中包含您要激活的规则并将SonarLint连接到它。
有关详细信息,请查看&#34;已连接模式&#34;您在http://www.sonarlint.org中使用的IDE部分。