Requires object destructuring for multiple return values, not array destructuring.
Type: Boolean
Value: true
Version: ES6
"disallowArrayDestructuringReturn": true
const { left, right } = processInput(input);
const [ left, __, top ] = processInput(input);