Have code like the following: ``` ts export class Foo { protected bar() { return new Something((c, e, p) => { }, function () { // goes wrong }); } } ``` Format it You end up with: ``` ts export class Foo { protected bar() { return new Something((c, e, p) => { }, function () { // goes wrong }); } } ```