This package handles multi-line method indent like this: ```js const foo = this.someMethod() .someOtherMethod(); ``` But it should handle it like this (or at least provide the option to handle it this way): ```js const foo = this.someMethod() .someOtherMethod(); ```