Reputation: 512
Is it possible to split curly braces import into many lines when more than one thing is imported? I want something like this:
import {
property1,
property2,
property3
} from './myModule.js'
instead of
import { property1, property2, property3 } from './myModule.js'
Upvotes: 2
Views: 65
Reputation: 469
I don't think so. This automatically happens depending on your hard wrap settings.
Upvotes: 1