No successful run was found on main (a392c06) during the generation of this report, so a78774b was used instead as the comparison base. There might be some changes unrelated to this pull request in this report.
fix(linter): prevent useConsistentArrowReturn from producing ASI-affected code
When adding braces to arrow functions with multiline expressions,
the autofix previously preserved leading trivia (newlines) from the
original expression. This could place a newline between `return` and
the expression, triggering JavaScript's automatic semicolon insertion
and causing the function to return `undefined` instead of the value.
Fixed by trimming leading trivia from the expression before inserting
it after the `return` keyword.
Fixes #8179