Skip to content

Commit

Permalink
chore: remove SwiftLint as SPM plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
philprime committed Jan 30, 2025
1 parent 228c40d commit 91803e1
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,24 @@ let package = Package(
.library(name: "PostieMock", targets: ["PostieMock"])
],
dependencies: [
.package(url: "https://github.com/MaxDesiatov/XMLCoder", .upToNextMajor(from: "0.17.1")),
//lint .package(url: "https://github.com/SimplyDanny/SwiftLintPlugins", .upToNextMajor(from: "0.58.2"))
.package(url: "https://github.com/MaxDesiatov/XMLCoder", .upToNextMajor(from: "0.17.1"))
],
targets: [
.target(name: "Postie", dependencies: [
"URLEncodedFormCoding",
"PostieUtils",
"XMLCoder"
], plugins: [
//lint .plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
]),
//dev .testTarget(name: "PostieTests", dependencies: [
//dev "Postie",
//dev "PostieMock"
//dev ], plugins: [
//dev //lint .plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
//dev ]),

.target(name: "PostieMock", dependencies: ["Postie"], plugins: [
//lint .plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
]),
.target(name: "PostieMock", dependencies: ["Postie"]),

.target(name: "URLEncodedFormCoding", dependencies: ["PostieUtils"], plugins: [
//lint .plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
]),
.target(name: "URLEncodedFormCoding", dependencies: ["PostieUtils"]),

.target(name: "PostieUtils", plugins: [
//lint .plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
]),
//dev .testTarget(name: "PostieUtilsTests", dependencies: ["PostieUtils"], plugins: [
//dev //lint .plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
//dev ]),
.target(name: "PostieUtils"),
//dev .testTarget(name: "PostieUtilsTests", dependencies: ["PostieUtils"])
]
)

0 comments on commit 91803e1

Please sign in to comment.