This bug is probably more important to day then 8 years ago because of the widely used arrow function with concise body syntax as documented here:
Right:
const something = () =>
indent_like_this();
Wrong:
const something = () =>
not_indent_like_this();