eslint-plugin-better-mutation icon indicating copy to clipboard operation
eslint-plugin-better-mutation copied to clipboard

fixes multiple let declarations on a single line

Open nweber-gh opened this issue 3 years ago • 0 comments

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.

nweber-gh avatar Apr 01 '21 14:04 nweber-gh