-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonar-project.properties
42 lines (33 loc) · 1.33 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
34
35
36
37
38
39
40
41
42
sonar.log.level=INFO
sonar.verbose=false
sonar.qualitygate.wait=false
# Project details
sonar.projectKey=rudderlabs_metrics-reporter-ios
sonar.organization=rudderlabs
sonar.projectName=Metrics Reporter iOS
sonar.projectVersion=2.0.0
# Meta-data for the project
sonar.links.scm=https://github.com/rudderlabs/metrics-reporter-ios
sonar.links.issue=https://github.com/rudderlabs/metrics-reporter-ios/issues
# Path to test directories (comment if no test)
#sonar.tests=MetricsReporterTests
# Destination Simulator to run surefire
#sonar.swift.simulator=platform=iOS Simulator,name=iPhone 14
# Xcode project configuration
#sonar.swift.workspace=MetricsReporter.xcworkspace
#sonar.swift.appScheme=MetricsReporter-iOS
# sonar.swift.excludedPathsFromCoverage=MetricsReporterTests,Examples/**/*,Pods/**/*,Sources/Classes/Networking/Data+Ext.swift
# Path to reports
#sonar.cfamily.build-wrapper-output=build_wrapper_output_directory
sonar.coverageReportPaths=generic-coverage.xml
#sonar.swift.swiftLint.reportPaths=reports/Lint_report.json
sonar.c.file.suffixes=-
sonar.cpp.file.suffixes=-
sonar.objc.file.suffixes=-
# Path to sources
sonar.sources=Sources
sonar.exclusions=**/*.json,**/*.html,**/*.png,**/*.jpg,**/*.gif,**/*.svg
# Source encoding
sonar.sourceEncoding=UTF-8
# Exclusions for copy-paste detection
sonar.cpd.exclusions=Examples/**/*,Pods/**/*