switch to gofumpt
This commit is contained in:
parent
3da597f4ba
commit
2b428230b2
6
Makefile
6
Makefile
@ -14,12 +14,12 @@ default: debug
|
||||
commit: fmt lint
|
||||
git commit -a
|
||||
|
||||
# get goimports with:
|
||||
# go get golang.org/x/tools/cmd/goimports
|
||||
# get golangci-lint with:
|
||||
# go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.31.0
|
||||
# get gofumports with:
|
||||
# go get mvdan.cc/gofumpt/gofumports
|
||||
fmt:
|
||||
goimports -l -w .
|
||||
gofumports -l -w .
|
||||
golangci-lint run --fix
|
||||
|
||||
lint:
|
||||
|
@ -6,9 +6,11 @@ import (
|
||||
"git.eeqj.de/sneak/gohttpserver/httpserver"
|
||||
)
|
||||
|
||||
var Appname string = "CHANGEME"
|
||||
var Version string
|
||||
var Buildarch string
|
||||
var (
|
||||
Appname string = "CHANGEME"
|
||||
Version string
|
||||
Buildarch string
|
||||
)
|
||||
|
||||
func main() {
|
||||
os.Exit(httpserver.Run(Appname, Version, Buildarch))
|
||||
|
@ -127,7 +127,6 @@ func (s *server) serve() int {
|
||||
}
|
||||
s.cleanShutdown()
|
||||
return s.exitCode
|
||||
|
||||
}
|
||||
|
||||
func (s *server) cleanupForExit() {
|
||||
|
@ -66,11 +66,9 @@ func (s *server) LoggingMiddleware() func(http.Handler) http.Handler {
|
||||
Int("status", lrw.statusCode).
|
||||
Int("latency_ms", int(latency.Milliseconds())).
|
||||
Send()
|
||||
|
||||
}()
|
||||
|
||||
next.ServeHTTP(lrw, r)
|
||||
|
||||
})
|
||||
}
|
||||
}
|
||||
@ -118,5 +116,4 @@ func (s *server) MetricsAuthMiddleware() func(http.Handler) http.Handler {
|
||||
},
|
||||
},
|
||||
)
|
||||
|
||||
}
|
||||
|
@ -12,7 +12,6 @@ import (
|
||||
)
|
||||
|
||||
func (s *server) routes() {
|
||||
|
||||
s.router = chi.NewRouter()
|
||||
|
||||
// the mux .Use() takes a http.Handler wrapper func, like most
|
||||
@ -93,5 +92,4 @@ func (s *server) routes() {
|
||||
r.Get("/metrics", http.HandlerFunc(promhttp.Handler().ServeHTTP))
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user