``` go package main import "fmt" func main() { //error, can't have the opening brace on a separate line fmt.Println("hello there!") } ``` should become ``` go 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.