rmarquis
05/25/2023, 3:59 PMenableCompilerPlugin = true
in detekt { ... }
tells me "Val cannot be reassigned" and "The boolean literal does not conform to the expected type Property<Boolean>". I am at a complete loss here, does anyone have a pointer to solve this?Chris Lee
05/25/2023, 4:15 PM.set(true)
rmarquis
05/25/2023, 4:18 PMChris Lee
05/25/2023, 4:20 PM=
operator to get the same syntax (incubating in Gradle 8.1).gammax
05/25/2023, 8:49 PM=
We can change it to .set()
if that allows for more compatibilitiesChris Lee
05/25/2023, 8:51 PM=
is not enabled by default, requiring an extra setting to enable it (it’s unsafe/incubating), and there are a small number of known issues with it (IDE support etc).rmarquis
05/26/2023, 5:53 AM