Skip to content

Commit

Permalink
Update SwiftLint version to 0.52.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mshurkin committed Sep 2, 2023
1 parent 6e9d15d commit 05dc8fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Binary file removed Binaries/SwiftLintBinary-macos.artifactbundle.zip
Binary file not shown.
6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ let package = Package(
),
dependencies: ["SwiftLintBinary"]
),
.binaryTarget(name: "SwiftLintBinary", path: "Binaries/SwiftLintBinary-macos.artifactbundle.zip")
.binaryTarget(
name: "SwiftLintBinary",
url: "https://github.com/realm/SwiftLint/releases/download/0.52.4/SwiftLintBinary-macos.artifactbundle.zip",
checksum: "8a8095e6235a07d00f34a9e500e7568b359f6f66a249f36d12cd846017a8c6f5"
)
]
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the package as a dependency to your `Package.swift`:

```swift
dependencies: [
.package(url: "https://github.com/mshurkin/SwiftLintPlugin", from: "0.49.1"),
.package(url: "https://github.com/mshurkin/SwiftLintPlugin", from: "0.52.4"),
]
```

Expand All @@ -35,7 +35,7 @@ targets: [

Add this package to your project dependencies. Select a target and open the `Build Phases` inspector. Open `Run Build Tool Plug-ins` and add `SwiftLintBuildPlugin` from the list.

## SwiftGen config
## SwiftLint config

Plugin look for a `swiftlint.yml` configuration file in the root of your package (in the same folder as `Package.swift`) and in the target's folder. If files are found in both places, the file in the target's folder is preferred.

Expand Down

0 comments on commit 05dc8fc

Please sign in to comment.