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(); }