SonarLint for Eclipse: Set up your own SonarQube & language profile?

Currently SonarLint for Eclipse uses https://update.sonarlint.org/ as a copy SonarQube.

Is there a way to configure my SonarQube's own URL (with user authentication) to use my own default language profile?

It can be very useful when you need more rules or you have configured some exceptions (mainly for external JavaScript libraries such as jQuery, ...)

+4
source share
1 answer

Too quick question, same here about IntelliJ, but with Eclipse answer.

2.0 (SLE-26).


...

. SonarSource, , . " ", , .


:

SonarLint Eclipse URL- (. SonarRunnerFacade), pluginCustomization.

eclipse.ini ( eclipse.exe) :

-pluginCustomization
myPrefs.ini
-startup
...

myPrefs.ini ( eclipse.exe/eclipse.ini):

# SonaQube - SonarLint URL override
org.sonarlint.eclipse.core/server_url=http\://localhost:9000
+4

Source: https://habr.com/ru/post/1612846/


All Articles