Hello I’m using version 1.36.1 of Visual Studio Code with SonarLint plugin 1.9.0 installed. It’s chaotic, it doesn’t work almost at all. Is this plugin still compatible with visual studio code or not ?
This is an example of my configuration
userSettings of SonarLint:
{
“sonarlint.ls.javaHome”: “C:\Program Files\Java\jdk-11.0.2”,
"sonarlint.connectedMode.servers": [
{
"serverId": "sonar_server", // Connection identifier
"serverUrl": "https:*****", // SonarQube/SonarCloud URL - https//sonarcloud.io for SonarCloud
"token": "****" // User token - generated in SonarQube/SonarCloud in My Account>Security
},
]
}
This is my Workspace Sonarlint settings:
{
“sonarlint.connectedMode.project”: {
“serverId”: “sonar_server”,
“projectKey”: “*******”
}
}
After this configuration, this plugin shows success message of Sonarlint storage updated… However, it doesn’t show any kind of errors I have configured as part of the quality profiles of a project within the SonarQube server… It usually doesn’t work at all, sometimes it shows an error but it’s completely unreliable.
Is this mistake on my side or is this plugin just not being updated for vs code anymore?