Open
Description
Arrow functions should probably be indented like normal functions, though right now there is a difference:
// OK
function foofunc(param: string): void
{
console.log('indented as expected');
}
// Double identation?
const foo = (param: string): void =>
{
console.log('unexpected double indent');
}
For me, expected output would be
const foo = (param: string): void =>
{
console.log('Expect single indent');
}