From 36620553f16483d3937cb431af065f91d27fb587 Mon Sep 17 00:00:00 2001 From: Daniel Thorpe <309420+danthorpe@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:24:43 +0100 Subject: [PATCH] chore: Remove swiftlint plugin (#26) Co-authored-by: danthorpe --- Package.resolved | 9 --------- Package.swift | 19 ++----------------- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/Package.resolved b/Package.resolved index 3d2461b..b4ce2eb 100644 --- a/Package.resolved +++ b/Package.resolved @@ -9,15 +9,6 @@ "version" : "1.0.0" } }, - { - "identity" : "danthorpe-swiftlint-plugin", - "kind" : "remoteSourceControl", - "location" : "https://github.com/danthorpe/danthorpe-swiftlint-plugin", - "state" : { - "revision" : "5fc8c94a1ebf4f459b27a12a0720f29ee9a41499", - "version" : "0.1.0" - } - }, { "identity" : "swift-argument-parser", "kind" : "remoteSourceControl", diff --git a/Package.swift b/Package.swift index 98a8aea..5bfd0d3 100644 --- a/Package.swift +++ b/Package.swift @@ -35,8 +35,7 @@ let 📦 = Module.builder( .tagged, .xcTestDynamicOverlay ], - unitTestsDependsOn: [ ], - plugins: [ .swiftLint ] + unitTestsDependsOn: [ ] ) ) @@ -83,19 +82,6 @@ ShortID <+ 📦 { ] } - -/// ✨ These are all special case targets, such as plugins -/// ------------------------------------------------------------ - -// MARK: - 🧮 Binary Targets & Plugins - -extension Target.PluginUsage { - static let swiftLint: Self = .plugin( - name: "SwiftLintPlugin", package: "danthorpe-swiftlint-plugin" - ) -} - - /// 👜 Define 3rd party dependencies. Associate these dependencies /// with modules using `$0.with = [ ]` property /// ------------------------------------------------------------ @@ -115,8 +101,7 @@ package.dependencies = [ /// ------------------------------------------------------------ package.dependencies += [ .package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.2"), - .package(url: "https://github.com/apple/swift-collections", from: "1.0.2"), - .package(url: "https://github.com/danthorpe/danthorpe-swiftlint-plugin", from: "0.1.0") + .package(url: "https://github.com/apple/swift-collections", from: "1.0.2") ] extension Target.Dependency {