DEV Community

Liang Wang
Liang Wang

Posted on

SwiftLint disable

I got 97 warnings from SwiftLint when I build the app, most of which are easy to fix, but there are a few that are hard to kill.

Swiftlint disable to the rescue!

For example:

// swiftlint: disable type_name
// swiftlint: disable line_length
// swiftlint: disable comma
Enter fullscreen mode Exit fullscreen mode

Top comments (0)