- Notifications
You must be signed in to change notification settings - Fork 567
Open
Description
package main import "fmt" func main() { //error, can't have the opening brace on a separate line fmt.Println("hello there!") }should become
package main import "fmt" func main() { fmt.Println("hello there!") }I think this should be a quickfix but in theory the formatter should be able to handle this as well which is currently doesn't.