Skip to content

Commit a2b2a86

Browse files
committed
Cleaned up: swiftlint warnings
1 parent c2157b9 commit a2b2a86

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Package.swift

+3-6
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,15 @@ import PackageDescription
66
let package = Package(
77
name: "RichString",
88
products: [
9-
// Products define the executables and libraries produced by a package, and make them visible to other packages.
109
.library(
1110
name: "RichString",
12-
targets: ["RichString"]),
11+
targets: ["RichString"])
1312
],
1413
dependencies: [
1514
.package(url: "https://github.com/Quick/Nimble.git", from: "7.0.1"),
16-
.package(url: "https://github.com/Quick/Quick.git", from: "1.1.0"),
15+
.package(url: "https://github.com/Quick/Quick.git", from: "1.1.0")
1716
],
1817
targets: [
19-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
20-
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2118
.target(
2219
name: "RichString",
2320
dependencies: [],
@@ -27,7 +24,7 @@ let package = Package(
2724
name: "RichStringTests",
2825
dependencies: ["RichString", "Quick", "Nimble"],
2926
path: "RichStringTests",
30-
exclude: ["RichStringTests/iOS", "RichStringTests/tvOS", "RichStringTests/watchOS"]),
27+
exclude: ["RichStringTests/iOS", "RichStringTests/tvOS", "RichStringTests/watchOS"])
3128
],
3229
swiftLanguageVersions: [4]
3330
)

0 commit comments

Comments
 (0)