vim-es6
vim-es6 copied to clipboard
Does not handle multi-line method chaining indent properly
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();