Danny Mösch

Results 29 issues of Danny Mösch

The Swift compiler now complains about these anyway. Fixes #5269 indirectly.

This is not a bug. I just want to inform you about performance regressions we noticed while integrating the two latest 509.0.0 releases of SwiftSyntax into SwiftLint. In numbers, we...

bug

Pressing the "Back" button always returns to the commands list. This is the correct behavior in case a command details view is opened. But if one taps a link and...

This new rule triggers on code like ```swift list.filter { $0.isValid } ``` which can be replaced by ```swift list.filter(\.isValid) ``` as of Swift 5.2. Automatic fixes fail once the...

Check whether this triggers `NSURLErrorDomain`.

Ideally, SwiftLintCore would only contain components that are needed to define rules. Consequently, it would be the only bundle required to import for (external) rule development. There are a few...

The [rules](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/accesscontrol/) for access control levels (ACL) that take effect in Swift (how the compiler determines them) are not always obvious. I'm thinking about questions like: * What is the...