# Project identification sonar.projectKey=demo-points-core sonar.projectName=Demo Points Core sonar.projectVersion=1.0.0 # Source code location sonar.sources=src sonar.tests=src sonar.test.inclusions=**/*.spec.ts sonar.exclusions=**/*.layout.ts,**/*.workflow.ts,**/*.custom_action.ts,**/*.module.ts,**/main.ts,**/index.ts,**/aws-s3/**,**/*.enum.ts # Language sonar.language=ts sonar.typescript.lcov.reportPaths=coverage/lcov.info # Encoding of the source files sonar.sourceEncoding=UTF-8 # Coverage report path sonar.javascript.lcov.reportPaths=coverage/lcov.info # SonarCloud configuration sonar.host.url=https://sonarcloud.io sonar.organization=your-organization-key # You need to replace this with your organization key # Authentication token should be provided via environment variable SONAR_TOKEN # DO NOT add the token directly in this file for security reasons