How to set type selector to scan .scss files?

Must-share information (formatted with Markdown):

  • which versions are you using (SonarQube, Scanner, Plugin, and any relevant extension)
  • what are you trying to achieve
  • what have you tried so far to achieve this

On the Issues page, we see the error:
…/.scss
Unexpected unknown type selector

The See Rule has:
Selectors should be known
Bug Critical Main sources No tags Available Since Nov 02, 2018 SonarAnalyzer (CSS) Constant/issue: 5min
HTML, SVG, and MathML define the selectors which can be used in a CSS. A selector that is not part of them is likely to be a typo or a misunderstanding of the CSS syntax.

Noncompliant Code Example
field {}
ul list {}

Compliant Solution
input {}
ul li {}

SonarQube version:

Community EditionVersion 7.9.3 (build 33349)

Build environment:

node version: v10.16.3
npm version: 6.9.0
Angular CLI: 11.0.3
Node: 10.16.3
OS: win32 x64

Jenkins script:

cd %WORKSPACE%
(
echo sonar.projectKey=org.sonarqube:%1
echo sonar.projectName=%1
echo sonar.projectVersion=trunk
echo sonar.sourceEncoding=UTF-8
echo sonar.typescript.node=E:/DevOps/Tools/Node/10.16.3/node.exe
echo sonar.nodejs.executable=E:/DevOps/Tools/Node/10.16.3/node.exe
echo sonar.sources=./src
echo sonar.exclusions=node_modules/**/*, *.tgz
) > sonar-project.properties
call sonar-scanner -v
call sonar-scanner
if %errorlevel% equ 0 goto end
echo SonarQube scan FAILED.
exit %errorlevel%
:end