mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-07 13:31:37 +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"
|
|
)
|