How to disable automatic launch of SonarLint on IntelliJ IDEA

Is there a way to disable SonarLint automatic analysis in Intellij IDEA?

I have from 10,000 to 20,000 lines of code (don't ask, not my fault, trying to reorganize). Every time I edit even one character in a class, the SonarLint plugin makes IDEA unusable for several minutes.

It is not possible to save the "Automatically start analysis" checkbox in an unchecked state under "Other Settings"> "General SonarLint Settings". Is there any other solution to my problem? I really want to use the plugin. I just can't use it automatically.

+6
source share
1 answer

An error has occurred in SonarLint for IntelliJ, which prevented the configuration from being properly saved.

This has been fixed in the latest version 2.3.2: https://jira.sonarsource.com/browse/SLI-106

About performance, please make sure that you are using Java 4.2 analyzer, as you may encounter this problem: https://jira.sonarsource.com/browse/SLI-100 .

It is built into the latest SonarLint, but if you use the connected mode, you also need to check which version of the Java analyzer is installed on the SonarQube server.

We always try to increase productivity, so do not hesitate to open a topic in the SonarLint Google group using the detailed analysis log so that we can investigate why it takes so long to analyze the file.

+2
source

All Articles