-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
sonar-project.properties
48 lines (44 loc) · 1.72 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
41
42
43
44
45
46
47
48
#
# Copyright (c) 2021
#
# This file, sonar-project.properties, is part of Project Alice.
#
# Project Alice is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>
#
# Last modified: 2021.04.13 at 12:56:49 CEST
#
# suppress inspection "UnusedProperty" for whole file
sonar.projectVersion=1.0.0-rc3
sonar.projectKey=project-alice-assistant_ProjectAlice
sonar.organization=project-alice-assistant
sonar.python.coverage.reportPaths=./coverage.xml
sonar.exclusions=\
core/interface/static/js/jquery*,\
core/interface/static/js/paho-mqtt-min.js,\
core/interface/static/css/brands.css,\
core/interface/static/css/fontawesome.css,\
core/interface/static/css/regular.css,\
core/interface/static/css/solid.css,\
core/interface/static/css/jquery*,\
core/interface/webfonts/**,\
tests/**
sonar.coverage.exclusions=core/interface/static/js/jquery*
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=ProjectAlice
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=core
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
sonar.python.version=3.7