Currently, if an object literal contains an arrow function as one of its values, the next line is indented one level too much:
{
one: () => 123,
two: () => 'two',
three: () => 'four'
}
It should be:
{
one: () => 123,
two: () => 'two',
three: () => 'four'
}