I am using SonarLint in my .NET Core project. When I integrate projects with SonarLint, the following files are generated within the .sonarlint
folder:
-
<NombreProyectoSonarQube>CSharp.ruleset
-
<NombreSolucion>.slconfig
The .ruleset
file contains the rules for Sonarlint and SonarQube, so I keep this file in version control.
But what about .slconfig
Should I keep this file in version control or should I exclude it? (add it to .gitignore
in my case)