forked from angular-schule/ngx-deploy-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
sonar-project.properties
40 lines (33 loc) · 1.54 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
sonar.organization=bikecoders
sonar.projectKey=bikecoders_ngx-deploy-npm
sonar.projectName=ngx-deploy-npm
sonar.sourceEncoding=UTF-8
sonar.project.monorepo.enabled=true
# List of module indedtifiers
sonar.modules=ngx-deploy-npm-e2e,ngx-deploy-npm
# Common settings
# Files to exclude
sonar.exclusions=**/node_modules/**
# How to find the test
sonar.test.inclusions=**/*.spec.ts,**/__mocks__/**
# ------- ngx-deploy-npm e2e -------
ngx-deploy-npm-e2e.sonar.projectBaseDir=packages/ngx-deploy-npm-e2e
ngx-deploy-npm-e2e.sonar.tests=src
ngx-deploy-npm.sonar.typescript.tsconfigPath=tsconfig.spec.json
# The coverage report
# ngx-deploy-npm-e2e.sonar.javascript.lcov.reportPaths=/github/workspace/coverage/packages/ngx-deploy-npm-e2e/lcov.info
# ------- ngx-deploy-npm e2e off -------
# ------- ngx-deploy-npm -------
ngx-deploy-npm.sonar.projectBaseDir=packages/ngx-deploy-npm
ngx-deploy-npm.sonar.sources=src
ngx-deploy-npm.sonar.tests=src
ngx-deploy-npm.sonar.typescript.tsconfigPath=tsconfig.lib.json
# Linter Report
# We standardize all the Sonar Analysis using dockerization to be able to provide absolute paths
ngx-deploy-npm.sonar.eslint.reportPaths=/github/workspace/reports/ngx-deploy-npm/lint-report
# The coverage report
# We standardize all the Sonar Analysis using dockerization to be able to provide absolute paths
ngx-deploy-npm.sonar.javascript.lcov.reportPaths=/github/workspace/coverage/packages/ngx-deploy-npm/lcov.info
# ------- ngx-deploy-npm off -------
# For more information visit
# https://docs.sonarqube.org/display/SONAR/Analysis+Parameters