mirror of
https://github.com/goreleaser/goreleaser.git
synced 2024-12-31 01:53:50 +02:00
11 lines
191 B
Go
11 lines
191 B
Go
|
// +build tools
|
||
|
|
||
|
package tools
|
||
|
|
||
|
import (
|
||
|
// Import golangci-lint
|
||
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
||
|
// Import misspell
|
||
|
_ "github.com/client9/misspell/cmd/misspell"
|
||
|
)
|