-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsonar-project.properties
More file actions
19 lines (18 loc) · 892 Bytes
/
sonar-project.properties
File metadata and controls
19 lines (18 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
sonar.projectKey=ThePromidius_Manga-Manager
sonar.organization=thepromidius
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=Manga-Manager
#sonar.projectVersion=1.0
sonar.python.version=3.10
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# Define separate root directories for sources and tests
sonar.sources=MangaManager/src/
sonar.tests=MangaManager/tests/
# Exclude test subdirectories from source scope
# Exclude Comicinfo.py because its generated code and "backwards" compatible to python 2 which we don't use but haven't rewritten the class yet
sonar.exclusions=MangaManager/src/**/comicinfo.py
sonar.cpd.exclusions = MangaManager/tests/**/*test*
sonar.test.exclusions=MangaManager/test*
sonar.python.file.suffixes=py
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8