-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
29 lines (25 loc) · 1.21 KB
/
Copy pathsonar-project.properties
File metadata and controls
29 lines (25 loc) · 1.21 KB
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
sonar.projectKey=golles_tomtom-apis-python
sonar.organization=golles
sonar.projectName=TomTom APIs Python
sonar.projectVersion=1.0
sonar.links.homepage=https://github.com/golles/tomtom-apis-python
sonar.links.ci=https://github.com/golles/tomtom-apis-python/actions
sonar.links.issue=https://github.com/golles/tomtom-apis-python/issues
sonar.links.scm=https://github.com/golles/tomtom-apis-python/tree/main
sonar.language=py
sonar.sourceEncoding=UTF-8
sonar.sources=src/tomtom_apis
sonar.tests=tests
sonar.python.version=3.14
sonar.python.coverage.reportPaths=coverage.xml
# Ignore defined rules
sonar.issue.ignore.multicriteria=e1,e2,e3
# Ignore: Field names should comply with a naming convention python:S116
sonar.issue.ignore.multicriteria.e1.ruleKey=python:S116
sonar.issue.ignore.multicriteria.e1.resourceKey=**/*.py
# Ignore: Local variable and function parameter names should comply with a naming convention python:S117
sonar.issue.ignore.multicriteria.e2.ruleKey=python:S117
sonar.issue.ignore.multicriteria.e2.resourceKey=**/*.py
# Ignore: A field should not duplicate the name of its containing class python:S1700
sonar.issue.ignore.multicriteria.e3.ruleKey=python:S1700
sonar.issue.ignore.multicriteria.e3.resourceKey=**/*.py