-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonar-project.properties
21 lines (19 loc) · 1.15 KB
/
sonar-project.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# must be unique in a given SonarQube instance
sonar.projectKey=visualization-site
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=Visualization site
sonar.projectVersion=0.0.1
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=lib
sonar.scm.exclusions.disabled=true
sonar.tests=test
sonar.test.exclusions=test/config.json,test/docker-compose.yml,test/docker-compose.shm.yml,test/pylint-report.txt,test/schema-samples.json,test/accessibility/**,test/coverage/**,test/downloads/**,test/junit/**,test/owasp-dep/**,test/results/**,test/sample/**
sonar.python.pylint.reportPath=test/pylint-report.txt
sonar.python.xunit.reportPath=test/junit/TEST-*.xml
sonar.python.xunit.skipDetails=true
sonar.javascript.lcov.reportPaths=test/coverage/lcov.info
sonar.dependencyCheck.reportPath=test/owasp-dep/dependency-check-report.xml
sonar.dependencyCheck.htmlReportPath=test/owasp-dep/dependency-check-report.html
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8