π Disallow unreadable array destructuring.
πΌ This rule is enabled in the following configs: β
recommended, βοΈ unopinionated.
π§ This rule is automatically fixable by the --fix CLI option.
Destructuring is very useful, but it can also make some code harder to read. This rule prevents ignoring consecutive values when destructuring from an array.
// β
const [foo] = parts;// β
const [, foo] = parts;// β
const [,, foo] = parts;
// β
const foo = parts[2];// β
const [,,, foo] = parts;
// β
const foo = parts[3];// β
const [,...rest] = parts;// β
const [,,...rest] = parts;
// β
const rest = parts.slice(2);You might have to modify the built-in prefer-destructuring rule to be compatible with this one:
{
"rules": {
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
]
}
}