Readability/consistency
It took me a moment to figure out what this line does:
https://github.com/sindresorhus/open/blob/2ea66da8e8b20880d235447cf4c94ba275da6a5a/index.js#L307
const {[a]: b} = c;
I think we should still detect it here since I believe consistency should be sacrificed for readability (does someone remember what that 3-step or so style guide was called?).
const {d} = g;
const {[a]: b} = c;
const {f} = h;
const b = c[a];
const {d} = g;
const b = c[a];
const {f} = h;
no-unreadable-object-destructuring
No response
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too