I think that the Pods and Carthage directories should be excluded from SwiftLint by default.
Flagging linter warnings/errors on dependencies isn't a very useful or commonly needed feature. Most sample .swiftlint.yml files that I've seen manually exclude these directories (examples: 0, 1, 2). This should be a built-in default which can be overridden with included if needed for some reason.
At least with Cocoapods, excluding the Pods directory by default would simplify the initial integration of SwiftLint into the project. Currently, the initial setup goes something like:
pod 'SwiftLint'"${PODS_ROOT}/SwiftLint/swiftlint" to a build phase.swiftlint.yml and excluded: - PodsIt also makes running an initial or one-off autocorrect more cumbersome than it needs to be.
Related to https://github.com/realm/SwiftLint/issues/1637. This was mentioned also in #6 but the issue was closed with the addition of the exclusion options to .swiftlint.yml.
swiftlint version to be sure)? 0.26.0Maybe rather create a swiftlint init command (similar to pod init) that creates a default .swiftlint.yml configuration file that already includes excluded: - Pods?
@fabb It's easy enough to add it manually. The point here is to reduce boilerplate and optimize for the common case.
@fabb I think some kind of command that generates a .swiftlint.yml could be useful, particularly if there was some way it could make discovering opt-in rules better. I still think the Pods exclusion should be a SwiftLint default though :)
I鈥榤 not against it, just wanted to point out a possible alternative.
This issue has been automatically marked as stale because it has not had any recent activity. Please comment to prevent this issue from being closed. Thank you for your contributions!
Most helpful comment
Maybe rather create a
swiftlint initcommand (similar topod init) that creates a default.swiftlint.ymlconfiguration file that already includesexcluded: - Pods?