mirror of
https://github.com/goreleaser/goreleaser.git
synced 2024-12-29 01:44:39 +02:00
955f7eee76
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
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"
|
|
)
|