-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
42 lines (29 loc) · 1.15 KB
/
Copy pathsonar-project.properties
File metadata and controls
42 lines (29 loc) · 1.15 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
30
31
32
33
34
35
36
37
38
39
40
41
42
sonar.projectKey=XargsUK_cognito-clean_d0dce2f8-8ade-4e15-91f0-a3b17b466145
sonar.python.version=3.10
sonar.tests=tests
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=cognito-clean
sonar.projectVersion=0.1.0
# Comma-separated paths to directories with sources
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=cognito_clean
# PEP8
sonar.python.flake8.reportPaths=flake8-report
# Pylint
sonar.pthon.pylint_config=pylintrc
#sonar.python.pylint.reportPaths=pylint-report.txt
# Unit tests
sonar.exclusions=**/test/**/*.py,**/tests/**/*.py
sonar.python.coverage.reportPaths=*coverage-*.xml
# End of project-specific properties
#### Sonarqube rules fine-tuning ####
sonar.issue.ignore.multicriteria=S1720
# No need for Docstring on __init__.py files
sonar.issue.ignore.multicriteria.S1720.ruleKey=python:S1720
sonar.issue.ignore.multicriteria.S1720.resourceKey=**/__init__.py
#### generic Python config ####
# Language
sonar.language=py
# Encoding of the source code. Python should always be UTF-8.
sonar.sourceEncoding=UTF-8
sonarlint.connectedMode.sonarqube.project=cognito-clean