PoisonedYouth
07/18/2025, 5:24 AM1.6.0
to 1.7.0
(without doing any other change). There are a lot of changes when formatting the code like:
OLD:
val updatedDemands = data.demands
.filterNot { userData ->
demands.any { <http://it.cat|it.cat> == <http://userData.cat|userData.cat> }
} + demands.filterNot { it.status == null }
NEW:
val updatedDemands = data.demands
.filterNot { userData ->
demands.any { <http://it.cat|it.cat> == <http://userData.cat|userData.cat> }
} +
demands.filterNot { it.status == null }
Which rule is affecting this? Can I disable it?Paul Dingemans
07/20/2025, 6:00 PMPoisonedYouth
07/20/2025, 6:13 PMPaul Dingemans
07/20/2025, 6:54 PMPoisonedYouth
07/20/2025, 6:58 PM.editorconfig
and only when explicitly disabled the rule, the code stays as expected.Paul Dingemans
07/20/2025, 7:02 PMPaul Dingemans
07/21/2025, 4:20 PMPoisonedYouth
07/21/2025, 4:21 PM