I am setting up Sonarqube for one of my projects which is a mix of Python and Html. I am able to configure the project separately for either of these languages but not together. Is there any way to do this? I tried the following scenario
1)sonar.language is commented in sonar-project.properties
sonar.projectKey=DemoProject
sonar.projectName=Demo Project
sonar.projectVersion=1.0
sonar.sources=.
Sonar.language is commented
#sonar.language=py,web
Output: - But Sonarqube is only analyzing the html (web) files
Can anyone suggest how to configure sonar-project.properties for multiple languages(Python and html)?