Skip to content

Commit 7118b13

Browse files
committed
Add SwiftParser's README to the exclude list
Exclude SwiftParser's README from its target to resolve the `found 1 file(s) which are unhandled` warning.
1 parent 101bbc6 commit 7118b13

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Package.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ let package = Package(
105105
),
106106
.target(
107107
name: "SwiftParser",
108-
dependencies: ["SwiftSyntax"]
108+
dependencies: ["SwiftSyntax"],
109+
exclude: [
110+
"README.md"
111+
]
109112
),
110113
.executableTarget(
111114
name: "lit-test-helper",
@@ -173,4 +176,4 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
173176
package.dependencies += [
174177
.package(path: "../swift-argument-parser")
175178
]
176-
}
179+
}

0 commit comments

Comments
 (0)