-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.sonar-project.properties
More file actions
29 lines (25 loc) · 1.31 KB
/
.sonar-project.properties
File metadata and controls
29 lines (25 loc) · 1.31 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.sourceEncoding=UTF-8
sonar.organization=open-rflab
sonar.projectKey=Open-RFlab_openemsh
sonar.projectName=openemsh
sonar.projectVersion=0.0.0
sonar.projectDescription="openEMS mesher"
sonar.links.homepage=https://github.com/Open-RFlab/openemsh
sonar.links.scm=https://github.com/Open-RFlab/openemsh
sonar.links.issue=https://github.com/Open-RFlab/openemsh/issues
sonar.links.ci=https://github.com/Open-RFlab/openemsh/actions
sonar.sources=src
sonar.tests=test
#sonar.cfamily.llvm-cov.reportPath=build/test/coverage.txt
sonar.coverageReportPaths=build/test/unit/CMakeFiles/openemsh_openemsh_unittest_coverage.dir/sonarqube_report_coverage.xml
sonar.testExecutionReportPaths=build/test/unit/CMakeFiles/openemsh_unittest.dir/sonarqube_report_test.xml
sonar.issue.ignore.multicriteria=e1,e2,e3
# "/*" and "//" should not be used within comments
sonar.issue.ignore.multicriteria.e1.ruleKey=cpp:S1103
sonar.issue.ignore.multicriteria.e1.resourceKey=**/*
# Memory should not be managed manually
sonar.issue.ignore.multicriteria.e2.ruleKey=cpp:S5025
sonar.issue.ignore.multicriteria.e2.resourceKey=src/ui/qt/**/*
# A cast shall not remove any const or volatile qualification from the type of a pointer or reference
sonar.issue.ignore.multicriteria.e3.ruleKey=cpp:S859
sonar.issue.ignore.multicriteria.e3.resourceKey=src/utils/unconst.hpp