vim-es6 icon indicating copy to clipboard operation
vim-es6 copied to clipboard

Does not handle multi-line method chaining indent properly

Open createthis opened this issue 4 years ago • 0 comments

This package handles multi-line method indent like this:

const foo = this.someMethod()
.someOtherMethod();

But it should handle it like this (or at least provide the option to handle it this way):

const foo = this.someMethod()
  .someOtherMethod();

createthis avatar Jul 07 '20 14:07 createthis