-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonar-project.properties
34 lines (26 loc) · 994 Bytes
/
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
# must be unique in a given SonarQube instance
sonar.projectKey=NeithExpress
sonar.organization=zaujulio
# --- optional properties ---
# defaults to project key
sonar.projectName=NeithExpress
# defaults to 'not provided'a
sonar.projectVersion=0.1.0
# Path is relative to the sonar-project.properties file. Defaults to .
sonar.sources=.
sonar.sources.inclusions=**/**.ts, **/**.js, **/**.json,
# Language
sonar.language=ts
# Repositório
sonar.scm.provider=git
sonar.links.scm=https://github.com/ZauJulio/-neith-express
sonar.links.issue=https://github.com/ZauJulio/-neith-express/issues
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# Coverage / Unit Tests
sonar.tests=.
sonar.test.inclusions=**/test_**.ts, **/tests_**.ts, **/tests.ts, **/**.spec.ts, **/**.test.ts
sonar.dynamicAnalysis=reuseReports
sonar.javascript.jstest.reportsPaths=./coverage
sonar.javascript.lcov.reportPaths=./coverage/lcov.info
sonar.exclusions=./node_modules/**