Hacker News new | ask | show | jobs
by _0w8t 1365 days ago
For me error handling adds a significant distraction due to high vertical space consumption leading to a lot of extra scrolling.

I wished Go formatter would compress

    if err {
        return err
    }
to

    if err { return err }
Even better would be to extend the syntax to allow

   if err return err
But I am Ok with braces.