SonarLint for Visual Studio CodeSonarLint is an IDE extension that helps you detect and fix quality issues as you write code. Like a spell checker, SonarLint squiggles flaws so they can be fixed before committing code. You can get it directly from the VS Code Marketplace and it will then detect new bugs and quality issues as you code (JavaScript, TypeScript, Python, Java, HTML, PHP). How it worksSimply open a JS, TS, Python, Java, HTML or PHP file, start coding, and you will start seeing issues reported by SonarLint. Issues are highlighted in your code, and also listed in the 'Problems' panel.
You can access the detailed rule description directly from your editor, using the provided contextual menu.
RulesCheck the rules to see what SonarLint can do for you: You will benefit from the following code analyzers: SonarJS, SonarTS, SonarPython, SonarJava, SonarHTML and SonarPHP. The full list of available rules is visible in the "SonarLint Rules" view in the explorer, where you can activate and deactivate rules to match your conventions. SonarLint will also show a code action on each issue to quickly deactivate the corresponding rule. RequirementsThe SonarLint language server needs a Java Runtime (JRE) 8 or 11. If one is already installed on your computer, SonarLint should automatically find and use it. If a suitable JRE cannot be found at the usual places, SonarLint will ask for your permission to download and manage its own version. Finally, you can explicitly set the path where the JRE is installed using the
To analyze JavaScript and TypeScript, SonarLint will also need Node.js. To enable the support for Java, you need the Language support for Java VSCode extension (version 0.56.0 or higher). The support for Apex and PL/SQL is only available together with SonarQube/SonarCloud. For Apex, you'll also need the Salesforce Extension Pack VSCode extension. Connected modeYou can connect SonarLint to SonarQube >= 6.7 or SonarCloud and bind your workspace folders to a SonarQube/SonarCloud project to benefit from the same rules and settings that are used to inspect your project on the server. SonarLint then hides in VSCode the issues that are marked as Won’t Fix or False Positive. The first step is to configure connection details (user token, SonarQube server URL or SonarCloud organization). For security reasons, the token should not be stored in SCM with workspace settings. That's why we suggest to configure them in VSCode user settings. Example for SonarQube:
Example for SonarCloud:
The second step is to configure the project binding, either at workspace level, or in every workspace folders. Example:
If you plan to use multiple connections, to different SonarQube servers and/or SonarCloud organizations, simply give a unique Example:
Configuring a project binding at the workspace level mutes Won’t Fix and False Positive issues in any of the project's sub-folders added to the workspace. SonarLint keep server side data in a local storage. If you change something on the server such as the quality profile, you can trigger an update of the local storage using the "SonarLint: Update all project bindings to SonarQube/SonarCloud" command on the command palette (search for "sonarlint"). ContributionsIf you would like to see a new feature, please create a new thread in the forum "Suggest new features". Please be aware that we are not actively looking for feature contributions. The truth is that it's extremely difficult for someone outside SonarSource to comply with our roadmap and expectations. Therefore, we typically only accept minor cosmetic changes and typo fixes. With that in mind, if you would like to submit a code contribution, please create a pull request for this repository. Please explain your motives to contribute this change: what problem you are trying to fix, what improvement you are trying to make. Make sure that you follow our code style and all tests are passing. Have Question or Feedback?For SonarLint support questions ("How do I?", "I got this error, why?", ...), please first read the FAQ and then head to the SonarSource forum. There are chances that a question similar to yours has already been answered. Be aware that this forum is a community, so the standard pleasantries ("Hi", "Thanks", ...) are expected. And if you don't get an answer to your thread, you should sit on your hands for at least three days before bumping it. Operators are not standing by. :-) Issue tracker (readonly): https://jira.sonarsource.com/browse/SLVSCODE LicenseCopyright 2017-2020 SonarSource. Licensed under the GNU Lesser General Public License, Version 3.0 |



