Skip to content

Commit

Permalink
[feat]: disable swiftlint
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkodes committed Jan 21, 2024
1 parent de9e9e7 commit 70e9b99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 91 deletions.
86 changes: 0 additions & 86 deletions Package.resolved

This file was deleted.

11 changes: 6 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,20 @@ let package = Package(
targets: ["Networking"]
)
],
dependencies: [.package(url: "https://github.com/realm/SwiftLint.git", exact: "0.53.0")],
// dependencies: [.package(url: "https://github.com/realm/SwiftLint.git", exact: "0.53.0")],
dependencies: [],
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: "Networking",
plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
name: "Networking"
// plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
),
.testTarget(
name: "NetworkingTests",
dependencies: ["Networking"],
resources: [.process("Resources")],
plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
resources: [.process("Resources")]
// plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
)
]
)

0 comments on commit 70e9b99

Please sign in to comment.