Skip to content

Commit db5861e

Browse files
authored
Only apply standard swift settings on valid targets (#52)
Only apply standard swift settings on valid targets. The current check ignores plugins but that is not comprehensive enough.
1 parent e8bbb13 commit db5861e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Package.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,16 @@ for target in package.targets {
6666

6767
// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
6868
for target in package.targets {
69-
if target.type != .plugin {
69+
switch target.type {
70+
case .regular, .test, .executable:
7071
var settings = target.swiftSettings ?? []
7172
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
7273
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
7374
target.swiftSettings = settings
75+
case .macro, .plugin, .system, .binary:
76+
() // not applicable
77+
@unknown default:
78+
() // we don't know what to do here, do nothing
7479
}
7580
}
7681
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //

0 commit comments

Comments
 (0)