David Kubecka
12/20/2023, 10:08 AMExpected newline after last annotation (standard:annotation)
but there's this common pattern in Spring-based tests:
class MyTest @Autowired constructor(
private val dep1: Dep1,
private val dep2: Dep2,
)
Is there any way how to relax the rule so that this pattern is allowed? (Obviously apart from suppressing the rule for each particular test case)Paul Dingemans
12/20/2023, 11:46 AMDavid Kubecka
12/20/2023, 12:22 PM