Skip to content

Commit

Permalink
Removed dependency to swiftlint due to ci complications
Browse files Browse the repository at this point in the history
  • Loading branch information
Jegge committed Sep 3, 2023
1 parent 3df41a5 commit aae0243
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 90 deletions.
86 changes: 0 additions & 86 deletions Package.resolved

This file was deleted.

8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "OldMoofKit",
platforms: [
.macOS(.v12), .iOS(.v14)
.macOS(.v12), .iOS(.v14),
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
Expand All @@ -17,15 +17,15 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/realm/SwiftLint", branch: "main")
// .package(url: "https://github.com/realm/SwiftLint", branch: "main")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "OldMoofKit",
dependencies: [],
plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
dependencies: []
// plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
),
]
)

0 comments on commit aae0243

Please sign in to comment.