How do you customize SonarLint rules in IntelliJ IDEA?

前端 未结 3 541
悲&欢浪女
悲&欢浪女 2021-02-02 09:03

Is it possible to have SonarLint for IntelliJ IDEA enforce only the rules I have enabled on my Sonar server?

相关标签:
3条回答
  • 2021-02-02 09:27

    SonarLint 1.0 for Eclipse and IntelliJ do not allow to edit the quality profile (or set of rules) to be used for the analysis. Moreover, SonarLint 1.x works completely independently of a SonarQube server (having a SonarQube server is not a requirement), and therefore does not have the ability to reuse a quality profile defined there.

    SonarLint 2.0 will have an optional mode that connects to a SonarQube server, and will offer this feature - but this isn't available yet.

    0 讨论(0)
  • 2021-02-02 09:29

    These connections settings for SonarLint in the latest version of IntelliJ (2020.2) are in the Preferences window at Tools>SonarLint>Project Settings.

    0 讨论(0)
  • 2021-02-02 09:44

    As it is now possible with the current release of SonarLint (I'm using version 3.0.0.2041), people might be interested in the solution.

    • File -> Settings -> Other Settings -> SonarLint General Settings
    • Click on the green + in "SonarQube servers" :
      • Enter a name (ex : SonarQube / localhost)
      • Select SonarQube and enter URL like http://localhost:9000
      • Authentication : select your user token or your login/pwd
      • Click on Finish
      • Click on "Update binding" to synchronize with the SonarQube server
    • Go to SonarLint Project Settings and bind your project to the SonarQube project

    Thus, when you open your files, SonarLint will automatically retrieve the SonarQube server's issues.

    0 讨论(0)
提交回复
热议问题