And a thorough description of the problem / question:
On recent version of SonarLint, I don’t get any errors or issues on any of my script. Even if I implement specific issues which should be raised, nothing happens.
What can be the issue here ? VS Code, .NET, SonarLint are up to date.
I initiated a private message and thank you for sharing the logs!
I see the error in the analysis logs
Timeout waiting for the solution to be loaded.
Do you have C# dev kit or the C# extension installed in VS Code? Could you try to add the following setting to your USER settings JSON and see how it goes?
Also to note, the logs that you shared seem to start off somewhere in the middle. For full context we would need logs from the very beginning. It should start with something like Executing /Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java.
I don’t know I guess your project structure is large/complex and the C# analyzer did not have enough time to load it? See the setting description from our docs:
omnisharp.projectLoadTimeout
Default value: 60
Description: Maximum waiting time (in seconds) for OmniSharp to load all projects (not relevant if sonar.cs.internal.loadProjectsOnDemand is set to true).
This setting is for the C# extension in VS Code, that SonarQube for IDE later re-uses and translates into the sonar.cs.internal.loadProjectsTimeout property.