Skip to content

Commit 73ae9f6

Browse files
committed
Lint
1 parent 956375c commit 73ae9f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ let package = Package(
55
name: "Reducer",
66
platforms: [.macOS(.v10_13), .iOS(.v11), .tvOS(.v11), .watchOS(.v4)],
77
products: [
8-
.library(name: "Reducer", targets: ["Reducer"]),
8+
.library(name: "Reducer", targets: ["Reducer"])
99
// .plugin(name: "Linter", targets: ["SwiftLintPlugin"])
1010
],
1111
targets: [
1212
.target(name: "Reducer"), // dependencies: ["SwiftLintPlugin"]),
13-
.testTarget(name: "ReducerTests", dependencies: ["Reducer"]),
13+
.testTarget(name: "ReducerTests", dependencies: ["Reducer"])
1414
// Please keep it commented out. This should be uncommented only for when developing the library in Xcode
1515
// .binaryTarget(
1616
// name: "SwiftLintBinary",

Tests/ReducerTests/ReducerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22
@testable import Reducer
33
import XCTest
44

5-
// swiftlint:disable:next type_body_length
5+
// swiftlint:disable:next
66
class ReducerTests: XCTestCase {
77
func testAnyReducer() {
88
// Given

0 commit comments

Comments
 (0)