@masknet/no-redundant-variable
Disallow redundant variable
async function example() { const foo = 'bar' return foo }
async function example() { return 'bar' }