Is there a possibility to disable multiline_arguments
rule only on some of the classes/methods?
I could write
// swiftlint:disable multiline_arguments
someMethod(self, a: a,
b: b c: c)
// swiftlint:enable multiline_arguments
But then I would have to write it in every call and that's exactly what I would like to avoid.