0
私はよりよいコードのためにSonarLintを使用しています。これはデフォルト設定を使用しています。私は次のエントリを持つxmlファイルを持っています。eclipseでソナーのカスタム設定を使う方法は?
<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のカスタム設定としてどのように使用できるかです。 ありがとう