Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
sonar-project.properties 1.15 KiB
sonar.projectKey=lofar_tmss-frontend
sonar.organization=lofar
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=SAS/TMSS/frontend/tmss_webapp/src
# coverage reports are generated before the sonarcloud check. The location of that report here should be present in 'paths' in your artifacts
# The sonar tag is different per language and coverage report:
# - sonar.javascript.lcov.reportPaths for junit: npm run test:ci (see package.json)
# - sonar.python.coverage.reportPaths=coverage.xml for python: 'python -m coverage run --source="." manage.py test && python -m coverage xml && python -m coverage report'
sonar.javascript.lcov.reportPaths=build/gnucxx11_opt/SAS/TMSS/frontend/tmss_webapp/coverage/lcov.info
#pipeline fails when the quality gate does not pass the standards
sonar.qualitygate.wait=true
sonar.qualitygate.timeout=1000
sonar.coverage.exclusions=**/*.test.js,**/setupTests.js,**/__mocks__/*.data.js
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=TMSS Frontend
#sonar.projectVersion=1.0

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8