Require space after colon in object destructuring.
Type: Boolean
Value: true
Version: ES6
"requireSpaceBeforeDestructuredValues": true
const { foo: objectsFoo } = SomeObject;
const { foo:objectsFoo } = SomeObject;
const { [ { foo: objectsFoo } ] } = SomeObject;
const { [ { foo:objectsFoo } ] } = SomeObject;