-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsonar-project.properties
More file actions
27 lines (19 loc) · 838 Bytes
/
sonar-project.properties
File metadata and controls
27 lines (19 loc) · 838 Bytes
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
sonar.projectKey=sir-gon_algorithm-exercises-py
sonar.organization=sir-gon
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=algorithm-exercises-py
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# sonar.sources=src
sonar.exclusions=**/*test.py,**/__init__.py
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
sonar.python.version=3.12
# Coverage
sonar.python.coverage.reportPaths=coverage/coverage.xml
# Ignore
sonar.issue.ignore.multicriteria=e1
# python:S6792 Use the "type" parameter syntax to declare this generic class.
sonar.issue.ignore.multicriteria.e1.ruleKey=python:S6792
sonar.issue.ignore.multicriteria.e1.resourceKey=**/*.py
sonar.python.naming.function=^[a-z][a-zA-Z0-9]*$