Skip to content

Binary version of the SwiftLint Swift Package Manager plugins

License

Notifications You must be signed in to change notification settings

SimplyDanny/SwiftLintPlugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SwiftLint Plugins

This repository provides the Swift Package Manager plugins (and only the plugins) that are developed as a part of SwiftLint. For comprehensive advice on how to integrate them into your projects refer to the main repository, especially Installation and Setup.

Note

This is only an excerpt of the official SwiftLint project. The plugins will be developed there next to SwiftLint as a command-line tool itself. The plugin source code is kept in sync with SwiftLint and so are the releases. Please report issues and propose changes to the plugins in the main source repository.

Offering the plugins in a separate package has multiple advantages you should be aware of:

  • No need to clone the whole SwiftLint repository.
  • SwiftLint itself is included as a binary dependency, thus the consumer doesn't need to build it first.
  • There are no other dependencies that need to be downloaded, resolved and compiled.
  • There is especially no induced dependency on SwiftSyntax which would require a lot of build time alone.
  • For projects having adopted Swift macros or depend on SwiftSyntax for other reasons, there is no version conflict caused by the fact that SwiftLint has to rely on a fixed and pretty current version.
  • As this Swift package doesn't provide any build products, there is no way to add them as dependencies to iOS, watchOS, ... targets. They would fail to build if you were to do that.

That said, you are perfectly free to consume the plugins directly from the SwiftLint repository instead if you like to. Both ways are functionally equivalent, however one comes with the aforementioned drawbacks.