https://kotlinlang.org logo
#random
Title
c

christophsturm

10/28/2021, 7:29 AM
is there something like https://errorprone.info for kotlin?
k

knthmn

10/28/2021, 2:01 PM
Had a look at the rules, seems many rules are in Intellij inspections or they don't apply to Kotlin. For example the one on the homepage, Kotlin's
MutableSet<T>.remove()
takes
T
not
Any
.
c

christophsturm

10/28/2021, 3:19 PM
i was more interested in using it to rewrite code like this library does: https://github.com/palantir/assertj-automation
to automatically improve test assertions
j

jimn

10/28/2021, 5:35 PM
i like the simple assertion delegate a.ShouldBe(b) I think i've sunk hours into trying to make a maven test scope library that brings that in.
104 Views