Danny Mösch
Danny Mösch
> ``` > Parsing Glob.swift (39/108) > /Users/runner/work/1/s/Source/SwiftLintCore/Helpers/Glob.swift:8:8: error: no such module 'Glibc' > import Glibc > ^ > ``` This one seems to be a bug in Jazzy or...
> So I would have thought it means that Jazzy found `public func asOption() -> OptionType` and then `public func asOption() -> SomeOtherType`, but I can't see any actual examples...
For understanding, I've also just reported the `Glibc` one in https://github.com/realm/jazzy/issues/1397.
> Hey, nice! Same problem. If you don't have time to create PR, lmk. I'm happy to do it. There already is a PR: #430.
This is a valid report and something people need to be aware of. SwiftLint doesn't care for any versions specified in the `Package.swift` at all - neither the tools version...
> Can you please clarify [@SimplyDanny](https://github.com/SimplyDanny)? Thanks! 🙏🏼 Let me shed some light on that. The documentation states that this rule works from Swift 5.2 on. The examples are the...
> Would it make sense to add a new configuration that would allow ignoring the identity closure `{ $0 }` instead of requiring `(\.self)`, for the sake of consistency between...
The thing is that detection of `{ $0 }` works also with Swift 5, but not the `(\.self)` the rule would transform this into. It leads to a compilation error....
> This make sense to me, as I think it adds value in both scenarios (despite my main interest being the latter). Would this be something easy to implement? What...
I'm not familiar with Quick, but what you describe and what I see in the implementation of `@TestState` in the Quick repository is that initializers are encouraged at this place....