ES6 param destructuring options for spacing
For ES6 imports we can set the spacing so that we have something like
import { myService } from ....
However I haven't been able to find the same setting for destructuring in es6
const { var1, var2, var3 } = myObject;
请先登录再写评论。
Spaces within destructuring object patterns are configured by 'Spaces -> Within -> Object literal braces'.
Thanks Elena, I think my brain just stopped working while I was looking for this today :)
Awesome this worked!