eslint-plugin-better-mutation
eslint-plugin-better-mutation copied to clipboard
fixes multiple let declarations on a single line
On master
this code fails.
let a, b;
a = 2; // fine
b = 2; // error
This fixes the issue.
Added new test and all existing tests pass.