I have a TeamCity-SonarQube setup. I use TeamCity to launch the sonar and push the result to the local SonarQube instance. This is a .NET / C # solution, and we are moving towards SASS, especially SCSS. My current configuration parses the .cs, .js and .css files separately using the sonar.language configuration. Is there any support for scss (sass in general). Its a problem as sonarqube does not swallow the xml results from jshint, csshint and other lints. I have set up SCSS-LINT for lint.scss files in my solution, but I cannot find the SonarQube plugin for scss or any way to integrate the scss-lint result using SonarQube.
My question is: is there a way to analyze .scss files and display the results in SonarQube, as well as configure high-quality gates on it, etc.
source share