For a developer, nothing is more important than improving the quality of the code. You probably had this experience that when a project was growing bigger and bigger, you had to spend more time debugging code for inspecting issues – memory leak, null pointer and so on. SonarQube is a tool that helps developers check and analyze code quality. It also integrated with some popular IDEs like Visual Studio, Eclipse, and IntelliJ IDEA.

Download

SonarLint integrates the checks of SonarQube right into Visual Studio (and Eclipse, Atom and VS Code). If you want to know if there are any quality problems with your code, you no longer need to leave your IDE. SonarLint shows you a comprehensive list right in Visual Studio. Nov 08, 2020 Visual Studio integration: Designite offers powerful plugins for Visual Studio and IntelliJ IDEA. NDepend also has powerful IDE integration with Visual Studio. SonarQube has a plugin SonarLint integrated with Visual Studio, IntelliJ IDEA, and VS Code.

In the download page, you can get SonarQube and related tools.

  • SonarQube: the platform.
  • SonarQube Scanners: scan and analyze code.
  • SonarQube Plugins: code analyzers, integration, SCM engines, visualization and etc.
  • SonarLint: extension for IntelliJ IDEA, Eclipse, Visual Studio, VS Code and Atom.

SonarQube License

There are four SonarQube editions: Community Edition, Developer Edition, Enterprise Edition, and Data Center Edition. Only Community Edition is free. No doubt, the programming language coverage is the first thing we care. Let’s take a look.

Community Edition

Developer Edition

Enterprise Edition and Data Center Edition

If you are a C++ developer, the Community Edition is apparently not enough for you.

Sonarqube visual studio code download for windows 10

Analyzing Code Quality with SonarQube

Run SonarQube

Download and extract the package of SonarQube 6.7.2 or SonarQube 7.0.

Add sonarqube-6.7.2binwindows-x86-64 to system path.

Download and extract the package of SonarQube Scanner.

Add sonar-scanner-3.0.3.778-windowsbin to system path.

Run SonarQube in command line tool.

Open localhost:9000 in your web browser. Login the page (username: admin, password: admin).

Install plugins

Click Administration > Marketplace to see which edition you are using and what plugins you can install.

Sonar Visual Studio Code

To install plugins manually, download jar files and copy them to sonarqube-7.0extensionsplugins directory, and then restart SonarQube.

Assume you need to install a C++ plugin, you can do as follows.

Online

Offline

Check the code on the fly

When writing code, we’d better avoid writing low-quality code. In Visual Studio Code, we can install SonarLint and SonarQube support extension to find code problem in real-time.

SonarQube Example: analyze an Android projects

Sonarqube Visual Studio Code

Create a configuration file sonar-project.properties in the root directory of the project and run sonar-scanner.

If you follow the official tutorial to create the configuration file, you will get the error message when running.

Sonarqube Visual Studio Code Analysis

Add sonar.java.binaries to the configuration file:

Once the scanning is done, open http://localhost:9000/dashboard?id=dynamsoft%3Abarcode to view the analysis report.

Sonar Scanner For Visual Studio Code

Now you can optimize your code referring to the report.