-
-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathsonar-project.properties
More file actions
73 lines (67 loc) · 2.2 KB
/
sonar-project.properties
File metadata and controls
73 lines (67 loc) · 2.2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
sonar.projectKey = stonerl_Thaw
sonar.organization = stonerl
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName = Thaw
sonar.projectVersion = 1.3.0
sonar.sources = Thaw,Shared,MenuBarItemService
sonar.tests = ThawTests
sonar.exclusions = \
**/*.png,**/*.pdf,**/*.xcassets/**,**/*.xcstrings,**/*.imageset/**
# Exclude UI and system-dependent code from coverage requirements
sonar.coverage.exclusions = \
**/AppDelegate.swift,\
**/AppState.swift,\
**/AppNavigationState.swift,\
**/SettingsURIHandler.swift,\
**/Extensions.swift,\
**/ScreenCapture.swift,\
**/*Settings.swift,\
**/*SettingsPane.swift,\
**/*SettingsView.swift,\
**/*SettingsWindow.swift,\
**/*View.swift,\
**/*Window.swift,\
**/*Panel.swift,\
**/*Sheet.swift,\
**/*Bar.swift,\
**/*Manager.swift,\
**/*Coordinator.swift,\
**/*Controller.swift,\
**/Bridging/Bridging.swift,\
**/Bridging/Shims.swift,\
**/ControlItem/*.swift,\
**/MenuBarItems/*.swift,\
**/HotkeyRecorder.swift,\
**/MenuBarAppearanceEditor.swift,\
**/SectionedList.swift,\
**/SharedConstants.swift,\
**/LayoutBarNewItemsBadgeView.swift,\
**/NotchIndicatorOverlay.swift,\
**/MenuBarItemContainer.swift,\
**/Events/*.swift,\
**/Hotkeys/*.swift,\
**/Main/IceApp.swift,\
**/Main/Updates.swift,\
**/Main/Navigation/NavigationIdentifiers/*.swift,\
**/Appearance/Configurations/MenuBarTintKind.swift,\
**/Appearance/MenuBarAppearanceEditor/MenuBarShapePicker.swift,\
**/LayoutBar/LayoutBarContainer.swift,\
**/Search/MenuBarSearchModel.swift,\
**/Permissions/AppPermissions.swift,\
**/Permissions/Permission.swift,\
**/Settings/Models/FocusFilterIntent.swift,\
**/Settings/Models/SettingsResetter.swift,\
**/UI/IceUI/*.swift,\
**/UI/Modifiers/*.swift,\
**/UI/Shapes/*.swift,\
**/UI/Utilities/*.swift,\
**/UI/Views/BetaBadge.swift,\
**/UI/Views/CalloutBox.swift,\
**/UI/Views/CustomTooltip.swift,\
**/UserNotifications/UserNotificationIdentifier.swift,\
Thaw/Utilities/*.swift,\
**/Shared/Utilities/AXHelpers.swift,\
**/MenuBarItemService/*.swift
# Coverage report in SonarQube generic format (generated by xcresultparser)
sonar.coverageReportPaths = coverage.xml
sonar.sourceEncoding = UTF-8