mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
* Check goimports in the pipeline * Check goimports in the pipeline * Check goimports in the pipeline * go mod tidy * wip * wip * Fix goimports and go:build tags * Run golangci-lint before goimports
13 lines
297 B
Go
13 lines
297 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "github.com/cespare/reflex"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/google/wire/cmd/wire"
|
|
_ "github.com/onsi/ginkgo/ginkgo"
|
|
_ "github.com/pressly/goose/cmd/goose"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
)
|