This repository was archived by the owner on May 12, 2025. It is now read-only.

Description
Braces and parentheses should be consistently used with arrow functions.
This issue will detect missing braces and functions and apply the applicable changes to the LST.
Note: there are additional rules not documented in the issue.
TODO: discover and add addition rules.
var foo = (a) => { foo(); }
vs
var foo = a => { foo(); }