updated to the latest version of ktlint and it seems to be formatting class definitions differently now.
e.g.
class something : some1(
param1,
param2
), some2 {
now has to be:
class something : some1(
param1,
param2
), some2 {
which one is really correct?