-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsonar-project.properties
32 lines (27 loc) · 1.15 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
# The purpose of this version is to test the flow from scanner cli
# Reference as of 08/21/2020: https://docs.sonarqube.org/latest/analysis/analysis-parameters/
#----- Default SonarQube server
# SonarQube URL is configured in the Ploigos Step Runner config. Do not set
# the sonar.host.url when running as part of a pipeline because it will not be used.
# sonar.host.url=https://sonarqube-sonarqube.apps.tssc.rht-set.com/
# PSR will also override:
# sonar.projectKey
# sonar.projectVersion
# sonar.working.directory
# Set sonar.qualitygate.wait to true to stop the pipeline
# when the threshold of errors is reached.
# Regardless, see the SonarQube dashboard for details.
sonar.qualitygate.wait=true
# --- Optional ---
# Defaults to the project key.
sonar.projectName=Ploigos Reference App - Node.js npm
# --- Optional ---
# Encoding of the source code. Default is default system encoding.
sonar.sourceEncoding=UTF-8
# --- Basic Properties ---
# Defaults to project base directory
sonar.sources=./
sonar.exclusions=.git,test/**/*,cypress/**/*,coverage/**/*
sonar.tests=test/,cypress/
sonar.git.provider=git
sonar.javascript.lcov.reportPaths=coverage/lcov.info