Skip to content

Handle comma separated function expression assignments #70

@Xvezda

Description

@Xvezda

e.g.

AS-IS

/** wrong */
const foo = () => 42, bar = () => { throw Error };

TO-BE

const foo = () => 42,
  /** correct */
  bar = () => { throw Error };

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions