JsFormat for Sublime Text 3 complies with most ES6 standards, however, when automatically formatting import statements, it adds a new line to the import of objects. Here's what a formatted string looks like:
import {func1, func2, func3} from 'some-module';
With automatic formatting, it turns into:
import {
func1, func2, func3
}
from 'some-module';
Is there any way to disable this kind of formatting?
source
share