Simple Guide to Improve Code Quality With SonarLint

In this article, we will learn to Configure sonarLint in IDE, identify and fix quality gaps, and improve our Code Quality With Sonarlint.

Oops!! how could I missed it!!
this is the spontaneous reaction generally developer had when a quality/security report generates and they got lots of bugs related to quality gaps. Sometimes it is so embarrassing to have such silly mistakes.

Quality and secure delivery is the key to success for developers but it happens as most of the time developer do code with a constructive mindset. So, what is the way out of it!!

Improve Code Quality With SonarLint

Plugin “SonarLint” for IDE which does static analysis and finds out bugs at the compile-time level. A developer gets early feedback on code and fixes it before check-in to the code repository.

SonarLint works offline and detects quality issues spontaneously that help to act proactively.

The quality control mechanism of SonarLint supports all necessary and required rule database. Suggestions and bug descriptions are very meaningful. Certainly, it will help a developer to increase the code quality and decrease the review effort of a reviewer.

As per a survey, early detection tools can improve code quality by 65%.

Salient features and requirements of SonarLint:

  • It requires version Java 8.
  • Analyze code with a rich rule set and description to detect vulnerabilities in early development time.
  • It lets you analyze bugs and code leaks on the fly basis.
  • SonarLint works offline just as another plugin in IDE.
  • In connected mode, it supports Sonarqube Server (Version needed >=5.6) as well.
  • Levels of severity: critical, blocker, major, minor, info.
  • It supports Java, JS, PHP, and Python code.
  • In IDE perspective, it supports IntelliJ IDEA, Eclipse, Visual Studio, VS Code and Atom.

Ways to configure it:

Here we are taking Eclipse as an IDE to demonstrate the configurations.

There are generally two ways to install it in the local eclipse IDE. The SonarLint plugin is available in the Eclipse marketplace, search sonarLint here: Help->Eclipse marketplace (recommended)

SonarLint Guide

Then follow the installation instructions to get a SonarLint plugin.

  1. By update sites, You can also download it directly from here and install it as Help->Install new software->add -> Archive as shown in below.

SonarLint Guide

After installation, a process will enable the standard ruleset to analyze quality gaps. it is very simple to integrate and use.

The code analysis process is just right-clicking away on a project. Click on sonarLint -> analyze, it will analyze the code against rule database and generate a report on the fly.

Go to the Window-> Show View-> select sonarLint view, to get the detailed information of bug detected.

SonarLint Guide

Below snapshot is to show an example of its usage and behavior in a java code snippet. Here we have taken a simple class and intentionally wrote the code with several bugs.

After code analysis, it will detail out all the findings in the SonarLint report view. A blue line in the code editor indicates the sonarLint findings.

Improve Code Quality With SonarLint

Conclusion

At the end of this article, it is expected that the developer can configure sonarLint in IDE, and further to this SonarLint plugin will help to identify and fix the code quality gaps in the very early development stage.

For more information please refer here Official Plugin Page

5 Comments
  1. Rajesh
    August 18, 2019 | Reply
  2. Atul
    May 17, 2018 | Reply
    • Shilpa
      May 18, 2018 | Reply
  3. April 26, 2018 | Reply
    • Pavan
      April 26, 2018 | Reply

Leave a Reply to Shilpa Cancel reply

Your email address will not be published. Required fields are marked *