You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I personally never want to break long lines in Go, however many other people do. That is why I'd like at least to enforce no indentation confusion by splitting the declaration of a function in the middle of it's args, for example:
Unlike in #2 I'd like to actually prevent breaking long lines in the middle of function definition and causing indentation confession. Right now
gofmt
accepts both:and
I personally never want to break long lines in Go, however many other people do. That is why I'd like at least to enforce no indentation confusion by splitting the declaration of a function in the middle of it's args, for example:
This ^ is a big no-no, IMHO. How do I enforce no splitting of argument list in the middle?
The text was updated successfully, but these errors were encountered: