-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonar-project.properties
33 lines (26 loc) · 1.19 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
sonar.projectKey=philips-software_amp-preview
sonar.organization=philips-software
sonar.projectName=amp-preview
# x-release-please-start-version
sonar.projectVersion=1.0.0
# x-release-please-end
sonar.links.homepage=https://github.com/philips-software/amp-preview
sonar.links.ci=https://github.com/philips-software/amp-preview/actions
sonar.links.issue=https://github.com/philips-software/amp-preview/issues
sonar.links.scm=https://github.com/philips-software/amp-preview.git
sonar.sources=preview/interfaces,preview/touch,preview/views
sonar.tests=preview/interfaces,preview/touch,preview/views
sonar.test.inclusions=**/test/*,**/test_doubles/*
sonar.cfamily.compile-commands=compile_commands.json
sonar.cfamily.threads=2
sonar.testExecutionReportPaths=execution.xml
sonar.coverageReportPaths=coverage.xml
# Project specific ignored rules
sonar.issue.ignore.multicriteria=e1
# Access specifiers should not be redundant [cpp:S3539]
#
# We allow duplicate access specifiers to distinguish
# between 'logical' blocks
# (i.e. separate private methods from private variables)
sonar.issue.ignore.multicriteria.e1.ruleKey=cpp:S3539
sonar.issue.ignore.multicriteria.e1.resourceKey=**/*.?pp