Template for a good new topic, formatted with Markdown:
- ALM used (GitHub)
- CI system used (Travis CI)
- Languages of the repository: GoLang
- We are using SonarCloud.io
I’m trying to configure the analysis so that it excludes the HTML files using sonar-project.properties. I’ve added sonar-project.properties file to the root directory. In this file I’ve added the following two lines,
sonar.coverage.exclusions=**/*.html
sonar.exclusions=**/*.html
Still see the analysis result reports errors in these files.
How should I fix this?