-
Notifications
You must be signed in to change notification settings - Fork 24
/
sonar-project.properties
30 lines (23 loc) · 1.33 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
# must be unique in a given SonarQube instance
sonar.projectKey=rickvandermey_angular-starterkit
sonar.projectName=rickvandermey_angular-starterkit
sonar.organization=rickvandermey
sonar.pullrequest.github.repository=rickvandermey/angular-starterkit
sonar.links.homepage=https://github.com/rickvandermey/angular-starterkit
sonar.links.ci=https://travis-ci.org/rickvandermey/angular-starterkit
sonar.links.scm=https://github.com/rickvandermey/angular-starterkit
sonar.links.issue=https://github.com/rickvandermey/angular-starterkit/issues
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=apps, libs, tools
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
sonar.exclusions = node_modules/**, coverage/**, test-reports/**, **/tailwind.config.js, **/testing/**, **/globals.ts, **.spec.ts
sonar.inclusions = src/**, features/**, scss/**, mock/**
sonar.coverage.exclusions = **/**.js, **/**.spec.ts
sonar.typescript.tsconfigPath = ./tsconfig.json
sonar.typescript.lcov.reportPaths=\
test-reports/apps/starterkit/coverage/lcov.info
sonar.java.checkstyle.reportPaths=\
test-reports/apps/starterkit/eslint/checkstyle-result.xml, \
test-reports/apps/starterkit/stylelint/checkstyle-result.xml, \