Hi I tried to upgrade kitliner to the latest versi...
# ktlint
h
Hi I tried to upgrade kitliner to the latest version which upgrade the built-in klint to 0.50 now, but it formats the original constructor:
Copy code
class SampleTest @Autowired constructor(val service: SampleService){
}
to :
Copy code
class SampleTest
    @Autowired 
    constructor(val service: SampleService){
    }
How I can keep the original format? it is the correct format we need here.